1 #include <signal.h>
2 
3 #include <poll.h>
4 #include <stddef.h>
5 
pause(void)6 int pause(void) {
7     return poll(NULL, 0, 0);
8 }
9