Sign in
android
/
platform
/
external
/
musl
/
3da2b5cceae98f5098e62e7865fe6433c1e82775
/
.
/
src
/
unistd
/
pause.c
blob: 90bbf4ca8ab5320a061d9e3ca0d7d854a90f32d8 [
file
] [
log
] [
blame
]
#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
}