jehanne: introduced pause

This commit is contained in:
Giacomo Tesio 2017-08-18 00:15:26 +02:00
parent 1680e696ac
commit 8059e6c9db
1 changed files with 7 additions and 0 deletions

View File

@ -208,6 +208,13 @@ usleep(useconds_t usec)
return POSIX_usleep(errnop, usec);
}
int
_pause(void)
{
int *errnop = &_REENT->_errno;
return POSIX_pause(errnop);
}
int
pipe(int fildes[2])
{