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