From bb326a37493de7c88dbdcb139676957bab691f25 Mon Sep 17 00:00:00 2001 From: bellard Date: Tue, 29 Apr 2003 21:08:48 +0000 Subject: [PATCH] fix _start routine name git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@113 c046a42c-6fe2-441c-8c8c-71466251a162 --- tests/hello.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- GitLab