change ldso path file logic to replace rather than add to search path
[oweals/musl.git] / src / signal / setitimer.c
index 3b2375809a7bd946ba2d420859a47b49d87414a7..21b1f45da9b7a87a67568e20991d1f4b73188f0a 100644 (file)
@@ -1,7 +1,7 @@
 #include <sys/time.h>
 #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);
 }