diff options
Diffstat (limited to 'user/sbin/halt.c')
-rw-r--r-- | user/sbin/halt.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/user/sbin/halt.c b/user/sbin/halt.c new file mode 100644 index 0000000..b8ae416 --- /dev/null +++ b/user/sbin/halt.c @@ -0,0 +1,7 @@ +#include <unistd.h> + +int main(int argc, char **argv) +{ + halt(); + return 0; +} |