source: trunk/libs/newlib/src/newlib/libc/syscalls/syswait.c @ 471

Last change on this file since 471 was 444, checked in by satin@…, 6 years ago

add newlib,libalmos-mkh, restructure shared_syscalls.h and mini-libc

File size: 132 bytes
Line 
1/* connector for wait */
2
3#include <reent.h>
4#include <sys/wait.h>
5
6pid_t
7wait (int *status)
8{
9  return _wait_r (_REENT, status);
10}
Note: See TracBrowser for help on using the repository browser.