diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2006-01-23 19:25:12 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2006-01-23 19:25:12 +0000 |
commit | bfa91a43d6f8a58aa9db375ed0a6209293e9f312 (patch) | |
tree | bbc7fa087f78143ef291e1e2fb973755585921ff /libc/stdlib | |
parent | 60155d4649bde150591fb8ce3c6b0260739ad05c (diff) |
Make i386 build w/ -std=c99 (almost)
Diffstat (limited to 'libc/stdlib')
-rw-r--r-- | libc/stdlib/abort.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/stdlib/abort.c b/libc/stdlib/abort.c index cce9c3be0..29e53a18e 100644 --- a/libc/stdlib/abort.c +++ b/libc/stdlib/abort.c @@ -37,7 +37,7 @@ libc_hidden_proto(_exit) /* Our last ditch effort to commit suicide */ #ifdef __UCLIBC_ABORT_INSTRUCTION__ -# define ABORT_INSTRUCTION asm(__UCLIBC_ABORT_INSTRUCTION__) +# define ABORT_INSTRUCTION __asm__(__UCLIBC_ABORT_INSTRUCTION__) #else # define ABORT_INSTRUCTION # warning "no abort instruction defined for your arch" |