summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/bfin
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2006-05-17 04:43:14 +0000
committerMike Frysinger <vapier@gentoo.org>2006-05-17 04:43:14 +0000
commitc19db2c2ea62fdeafdd332d40900f625c2522b73 (patch)
treec539202e23b98d6979db574ef73d6eba541eb486 /libc/sysdeps/linux/bfin
parentf39be07c31e1fd2263e77b69e7f64992b46c4b72 (diff)
fix by Peter S. Mazinger: use c99-compliant asm keyword
Diffstat (limited to 'libc/sysdeps/linux/bfin')
-rw-r--r--libc/sysdeps/linux/bfin/syscall.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/bfin/syscall.c b/libc/sysdeps/linux/bfin/syscall.c
index c223f56a3..15881b46b 100644
--- a/libc/sysdeps/linux/bfin/syscall.c
+++ b/libc/sysdeps/linux/bfin/syscall.c
@@ -15,7 +15,7 @@
long syscall(long sysnum, long a, long b, long c, long d, long e)
{
int _r0 = 0;
- asm volatile(
+ __asm__ volatile(
"p0 = %1;" /*SysCall Number*/
"r0 = %2;"
"r1 = %3;"