diff options
| author | Peter S. Mazinger <ps.m@gmx.net> | 2011-03-09 13:32:30 +0100 | 
|---|---|---|
| committer | Peter S. Mazinger <ps.m@gmx.net> | 2011-03-09 13:32:30 +0100 | 
| commit | 1dd9275091d6cbb14d6b149770fc90cef53577cf (patch) | |
| tree | 1f8fb532ac2e9756d1bf1ac658426253a92e4f92 /libc | |
| parent | 92895c04f3033834ee512942014a9e643ba579a5 (diff) | |
remove trailing ';' from _syscallX()
Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Diffstat (limited to 'libc')
| -rw-r--r-- | libc/misc/sysvipc/msgq.c | 2 | ||||
| -rw-r--r-- | libc/misc/sysvipc/sem.c | 2 | ||||
| -rw-r--r-- | libc/misc/sysvipc/shm.c | 2 | ||||
| -rw-r--r-- | libc/sysdeps/linux/common/sigsuspend.c | 2 | ||||
| -rw-r--r-- | libc/sysdeps/linux/sparc/sigaction.c | 2 | 
5 files changed, 5 insertions, 5 deletions
diff --git a/libc/misc/sysvipc/msgq.c b/libc/misc/sysvipc/msgq.c index 27eb1ff92..185cd268b 100644 --- a/libc/misc/sysvipc/msgq.c +++ b/libc/misc/sysvipc/msgq.c @@ -12,7 +12,7 @@  #ifdef __NR_msgctl  #define __NR___libc_msgctl __NR_msgctl -static __inline__ _syscall3(int, __libc_msgctl, int, msqid, int, cmd, struct msqid_ds *, buf); +static __inline__ _syscall3(int, __libc_msgctl, int, msqid, int, cmd, struct msqid_ds *, buf)  #endif  /* Message queue control operation.  */  int msgctl(int msqid, int cmd, struct msqid_ds *buf) diff --git a/libc/misc/sysvipc/sem.c b/libc/misc/sysvipc/sem.c index e340216e9..cca4cdfcc 100644 --- a/libc/misc/sysvipc/sem.c +++ b/libc/misc/sysvipc/sem.c @@ -41,7 +41,7 @@ union semun {  #ifdef __NR_semctl  #define __NR___semctl __NR_semctl -static __inline__ _syscall4(int, __semctl, int, semid, int, semnum, int, cmd, void *, arg); +static __inline__ _syscall4(int, __semctl, int, semid, int, semnum, int, cmd, void *, arg)  #endif  int semctl(int semid, int semnum, int cmd, ...) diff --git a/libc/misc/sysvipc/shm.c b/libc/misc/sysvipc/shm.c index 4b7ea0753..27e871f27 100644 --- a/libc/misc/sysvipc/shm.c +++ b/libc/misc/sysvipc/shm.c @@ -55,7 +55,7 @@ void * shmat (int shmid, const void *shmaddr, int shmflg)  /* Provide operations to control over shared memory segments.  */  #ifdef __NR_shmctl  #define __NR___libc_shmctl __NR_shmctl -static __inline__ _syscall3(int, __libc_shmctl, int, shmid, int, cmd, struct shmid_ds *, buf); +static __inline__ _syscall3(int, __libc_shmctl, int, shmid, int, cmd, struct shmid_ds *, buf)  #endif  int shmctl(int shmid, int cmd, struct shmid_ds *buf)  { diff --git a/libc/sysdeps/linux/common/sigsuspend.c b/libc/sysdeps/linux/common/sigsuspend.c index 789eeda89..ded2aad5b 100644 --- a/libc/sysdeps/linux/common/sigsuspend.c +++ b/libc/sysdeps/linux/common/sigsuspend.c @@ -38,7 +38,7 @@ int sigsuspend (const sigset_t *set)  	return result;  }  # else -static inline _syscall2(int, __rt_sigsuspend, const sigset_t *, mask, size_t, size); +static inline _syscall2(int, __rt_sigsuspend, const sigset_t *, mask, size_t, size)  int sigsuspend(const sigset_t * mask)  { diff --git a/libc/sysdeps/linux/sparc/sigaction.c b/libc/sysdeps/linux/sparc/sigaction.c index a22ac40af..3e6f7e408 100644 --- a/libc/sysdeps/linux/sparc/sigaction.c +++ b/libc/sysdeps/linux/sparc/sigaction.c @@ -30,7 +30,7 @@  #include <bits/kernel_sigaction.h> -_syscall5(int, rt_sigaction, int, a, int, b, int, c, int, d, int, e); +_syscall5(int, rt_sigaction, int, a, int, b, int, c, int, d, int, e)  static void __rt_sigreturn_stub(void);  static void __sigreturn_stub(void);  | 
