71ff2d08cd
link it at low cost and avoid environment poisoning attacks associated with LD_LIBRARY_PATH. Suggested by: rwatson
22 lines
400 B
C
22 lines
400 B
C
/*-
|
|
* This program is in the public domain. I couldn't bring myself to
|
|
* declare Copyright on a variant of Hello World.
|
|
*/
|
|
|
|
#include <sys/cdefs.h>
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
#include <sys/types.h>
|
|
#include <sys/uio.h>
|
|
#include <unistd.h>
|
|
|
|
#define MESSAGE "This account is currently not available.\n"
|
|
|
|
int
|
|
main(int argc, char *argv[])
|
|
{
|
|
|
|
write(STDOUT_FILENO, MESSAGE, sizeof(MESSAGE));
|
|
_exit(1);
|
|
}
|