CS318 - Pintos
Pintos source browser for JHU CS318 course
entry.c
Go to the documentation of this file.
1 #include <syscall.h>
2 
3 int main (int, char *[]);
4 void _start (int argc, char *argv[]);
5 
6 void
7 _start (int argc, char *argv[])
8 {
9  exit (main (argc, argv));
10 }
main
int main(int, char *[])
exit
void exit(int status)
Definition: syscall.c:72
syscall.h
_start
void _start(int argc, char *argv[])
Definition: entry.c:7