xv6-riscv-kernel/user/halt.c
2024-08-09 07:58:00 +02:00

9 lines
103 B
C

#include "user.h"
/** Stops the machine */
int
main(int argc, char *argv[])
{
halt();
return 0;
}