Blob Blame History Raw
/*    This file is part of mlogin.

    Copyright (c) 2020, Ørjan Malde

    mlogin is free software: you can redistribute it and/or modify
    it under the terms of the GNU Lesser General Public License as published by
    the Free Software Foundation, version 2.1 of the License only

    mlogin is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU Lesser General Public License for more details.

    You should have received a copy of the GNU Lesser General Public License
    along with mlogin.  If not, see <https://www.gnu.org/licenses/>. */


#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>


#define DEFAULT_MSG "This account is currently not available.\n"

int main(int argc, char *argv[])
{
	(void)argc;
	(void)argv;

	write(STDOUT_FILENO, DEFAULT_MSG, strlen(DEFAULT_MSG));

	exit(1);
}