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