diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2003-04-29 21:08:48 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2003-04-29 21:08:48 +0000 |
commit | bb326a37493de7c88dbdcb139676957bab691f25 (patch) | |
tree | 5fe1ad8a82877d45cee4c22b2feac2d0c73b9c89 /tests | |
parent | 27725c1d74a6dc754830ecccbc19c3d4cd63678c (diff) |
fix _start routine name
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@113 c046a42c-6fe2-441c-8c8c-71466251a162
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); |