mirror of
https://github.com/sheumann/hush.git
synced 2024-11-18 17:10:36 +00:00
13 lines
207 B
C
13 lines
207 B
C
#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)
|
|
{
|
|
return kill(1, SIGUSR1);
|
|
}
|