diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/hello.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/hello.c b/tests/hello.c index 89bd15b829..e00245d3fe 100644 --- a/tests/hello.c +++ b/tests/hello.c @@ -19,7 +19,7 @@ extern inline int write(int fd, const char * buf, int len) : "0" (__NR_write),"S" ((long)(fd)),"c" ((long)(buf)),"d" ((long)(len))); } -void _startup(void) +void _start(void) { write(1, "Hello World\n", 12); exit(0); |