mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-15 11:20:03 +00:00
13 lines
176 B
C
13 lines
176 B
C
#include <u.h>
|
|
#define NOPLAN9DEFINES
|
|
#include <libc.h>
|
|
|
|
extern void p9main(int, char**);
|
|
|
|
int
|
|
main(int argc, char **argv)
|
|
{
|
|
p9main(argc, argv);
|
|
exits("main");
|
|
return 99;
|
|
}
|