10 lines
157 B
C
Executable file
10 lines
157 B
C
Executable file
#include <syscall.h>
|
|
|
|
int main (int, char *[]);
|
|
void _start (int argc, char *argv[]);
|
|
|
|
void
|
|
_start (int argc, char *argv[])
|
|
{
|
|
exit (main (argc, argv));
|
|
}
|