diff options
Diffstat (limited to 'libc/misc/sysvipc/shm.c')
-rw-r--r-- | libc/misc/sysvipc/shm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/misc/sysvipc/shm.c b/libc/misc/sysvipc/shm.c index 7ac7d35b0..553c1203e 100644 --- a/libc/misc/sysvipc/shm.c +++ b/libc/misc/sysvipc/shm.c @@ -47,8 +47,8 @@ void * shmat (int shmid, const void *shmaddr, int shmflg) #ifdef L_shmctl /* Provide operations to control over shared memory segments. */ -#ifdef __NR_shctl -_syscall3(int, shmctl, int shmid, int, cmd, struct shmid_ds *, buf); +#ifdef __NR_shmctl +_syscall3(int, shmctl, int, shmid, int, cmd, struct shmid_ds *, buf); #else int shmctl (int shmid, int cmd, struct shmid_ds *buf) { |