nologin.c revision 122842
1/*-
2 * This program is in the public domain.  I couldn't bring myself to
3 * declare Copyright on a variant of Hello World.
4 */
5
6#include <sys/cdefs.h>
7__FBSDID("$FreeBSD: head/usr.sbin/nologin/nologin.c 122842 2003-11-17 06:39:38Z das $");
8
9#include <sys/types.h>
10#include <sys/uio.h>
11#include <unistd.h>
12
13#define	MESSAGE	"This account is currently not available.\n"
14
15int
16main(int argc, char *argv[])
17{
18
19	write(STDOUT_FILENO, MESSAGE, sizeof(MESSAGE));
20	_exit(1);
21}
22