Browse Source

fix by Peter S. Mazinger: use c99-compliant asm keyword

Mike Frysinger 19 years ago
parent
commit
c19db2c2ea
1 changed files with 1 additions and 1 deletions
  1. 1 1
      libc/sysdeps/linux/bfin/syscall.c

+ 1 - 1
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;"