From: bellard Date: Tue, 29 Apr 2003 21:08:48 +0000 (+0000) Subject: fix _start routine name X-Git-Tag: TizenStudio_2.0_p2.3~16100 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bb326a37493de7c88dbdcb139676957bab691f25;p=sdk%2Femulator%2Fqemu.git fix _start routine name git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@113 c046a42c-6fe2-441c-8c8c-71466251a162 --- 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);