Index: fusl/src/signal/setitimer.c |
diff --git a/fusl/src/signal/setitimer.c b/fusl/src/signal/setitimer.c |
index 21b1f45da9b7a87a67568e20991d1f4b73188f0a..abf872ad1199e25fb5815be224c00366960131b2 100644 |
--- a/fusl/src/signal/setitimer.c |
+++ b/fusl/src/signal/setitimer.c |
@@ -1,7 +1,8 @@ |
#include <sys/time.h> |
#include "syscall.h" |
-int setitimer(int which, const struct itimerval *restrict new, struct itimerval *restrict old) |
-{ |
- return syscall(SYS_setitimer, which, new, old); |
+int setitimer(int which, |
+ const struct itimerval* restrict new, |
+ struct itimerval* restrict old) { |
+ return syscall(SYS_setitimer, which, new, old); |
} |