diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-10-22 13:36:10 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-10-22 13:36:10 +0000 |
commit | ae549acff0899cbec32bd2a1353a99ea26d6bc00 (patch) | |
tree | 3e9943a7deacd90d153b9780f706cddd27ba648d /libc/misc/sysvipc/sem.c | |
parent | 28c95476b8fd6e1cfcc80527767d425f503372b1 (diff) |
- remove superfluous ';'. No objcode changes.
Diffstat (limited to 'libc/misc/sysvipc/sem.c')
-rw-r--r-- | libc/misc/sysvipc/sem.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libc/misc/sysvipc/sem.c b/libc/misc/sysvipc/sem.c index d7de5a346..96d6a6ee5 100644 --- a/libc/misc/sysvipc/sem.c +++ b/libc/misc/sysvipc/sem.c @@ -63,7 +63,7 @@ int semctl(int semid, int semnum, int cmd, ...) #ifdef L_semget #ifdef __NR_semget -_syscall3(int, semget, key_t, key, int, nsems, int, semflg); +_syscall3(int, semget, key_t, key, int, nsems, int, semflg) #else /* Return identifier for array of NSEMS semaphores associated @@ -78,7 +78,7 @@ int semget (key_t key, int nsems, int semflg) #ifdef L_semop #ifdef __NR_semop -_syscall3(int, semop, int, semid, struct sembuf *, sops, size_t, nsops); +_syscall3(int, semop, int, semid, struct sembuf *, sops, size_t, nsops) #else /* Perform user-defined atomical operation of array of semaphores. */ @@ -92,7 +92,7 @@ int semop (int semid, struct sembuf *sops, size_t nsops) #ifdef L_semtimedop #ifdef __NR_semtimedop -_syscall4(int, semtimedop, int, semid, struct sembuf *, sops, size_t, nsops, const struct timespec *, timeout); +_syscall4(int, semtimedop, int, semid, struct sembuf *, sops, size_t, nsops, const struct timespec *, timeout) #else |