aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/hello.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/hello.c b/tests/hello.c
index 89bd15b..e00245d 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);