More stuff

This commit is contained in:
Eric Andersen
1999-10-18 21:31:00 +00:00
parent 8759006b55
commit 703c62da63
8 changed files with 27 additions and 227 deletions

View File

@@ -1,12 +1,9 @@
#include "internal.h"
#include <signal.h>
const char halt_usage[] = "halt\n"
"\n\t"
"\thalt the system.\n";
extern int
halt_main(struct FileInfo * i, int argc, char * * argv)
halt_main(int argc, char ** argv)
{
return kill(1, SIGUSR1);
exit( kill(1, SIGUSR1));
}