blob: 7f3ccf9667cfd733775d49222f981db3465b96ed [file] [log] [blame]
Eric Andersencc8ed391999-10-05 16:24:54 +00001#include "internal.h"
2#include <signal.h>
3
4const char halt_usage[] = "halt\n"
5"\n\t"
6"\thalt the system.\n";
7
8extern int
9halt_main(struct FileInfo * i, int argc, char * * argv)
10{
11 return kill(1, SIGUSR1);
12}