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 /include | |
parent | 60155d4649bde150591fb8ce3c6b0260739ad05c (diff) |
Make i386 build w/ -std=c99 (almost)
Diffstat (limited to 'include')
-rw-r--r-- | include/libc-symbols.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libc-symbols.h b/include/libc-symbols.h index 479a17a2f..7440e00d5 100644 --- a/include/libc-symbols.h +++ b/include/libc-symbols.h @@ -245,7 +245,7 @@ /* We want the .gnu.warning.SYMBOL section to be unallocated. */ #define __make_section_unallocated(section_string) \ - asm (".section " section_string "\n\t.previous"); + __asm__ (".section " section_string "\n\t.previous"); /* Tacking on "\n\t#" to the section name makes gcc put it's bogus section attributes on what looks like a comment to the assembler. */ |