0b44a031
aa398f56
1 2 3 4 5 6 7 8
9
10 11 12
#include <unistd.h> #include "syscall.h" #include "libc.h" int pause(void) { int r; CANCELPT_BEGIN; r = syscall(SYS_pause); CANCELPT_END; return r; }