X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fsignal%2Fsetitimer.c;h=21b1f45da9b7a87a67568e20991d1f4b73188f0a;hb=400c5e5c8307a2ebe44ef1f203f5a15669f20347;hp=3b2375809a7bd946ba2d420859a47b49d87414a7;hpb=bac03cdde1137c16b4c194e137310e2748661dcc;p=musl diff --git a/src/signal/setitimer.c b/src/signal/setitimer.c index 3b237580..21b1f45d 100644 --- a/src/signal/setitimer.c +++ b/src/signal/setitimer.c @@ -1,7 +1,7 @@ #include #include "syscall.h" -int setitimer(int which, const struct itimerval *new, struct itimerval *old) +int setitimer(int which, const struct itimerval *restrict new, struct itimerval *restrict old) { return syscall(SYS_setitimer, which, new, old); }