X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fipc%2Fshmat.c;h=38db92f9511486fa5ff69001040678e45579e2d3;hb=2e762105b7b99e258d74e3585fe36161729a2b56;hp=c6ee4007a786855b41531f0a04679561d7493f32;hpb=aa398f56fa398f2202b04e82c67f822f3233786f;p=musl diff --git a/src/ipc/shmat.c b/src/ipc/shmat.c index c6ee4007..38db92f9 100644 --- a/src/ipc/shmat.c +++ b/src/ipc/shmat.c @@ -2,7 +2,7 @@ #include "syscall.h" #include "ipc.h" -#ifdef __NR_shmat +#ifdef SYS_shmat void *shmat(int id, const void *addr, int flag) { return (void *)syscall(SYS_shmat, id, addr, flag);