#include <unistd.h>
#include "syscall.h"
int pause(void)
{
#ifdef SYS_pause
return syscall_cp(SYS_pause);
#else
return syscall_cp(SYS_ppoll, 0, 0, 0, 0);
#endif
}
#ifdef TEST
int
main(void) {
return 0;
}
#endif
![]() |
index : grovel | |
| Unnamed repository; edit this file 'description' to name the repository. | External SSH Git service user |
| aboutsummaryrefslogtreecommitdiff |
#include <unistd.h>
#include "syscall.h"
int pause(void)
{
#ifdef SYS_pause
return syscall_cp(SYS_pause);
#else
return syscall_cp(SYS_ppoll, 0, 0, 0, 0);
#endif
}
#ifdef TEST
int
main(void) {
return 0;
}
#endif