index
:
weenix.git
master
My final project for Brown University's graduate level operating systems course. Weenix is a full fledge operating system built on unix.
csci2670
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
user
/
sbin
/
halt.c
blob: b8ae416aefcfda3024f33d31e136eb5e38081cdc (
plain
)
1
2
3
4
5
6
7
#include
<unistd.h>
int
main
(
int
argc
,
char
**
argv
)
{
halt
();
return
0
;
}