|
Last change
on this file since 18 was 18, checked in by bird, 23 years ago |
|
Initial revision
|
-
Property cvs2svn:cvs-rev
set to
1.1
-
Property svn:eol-style
set to
native
-
Property svn:executable
set to
*
|
|
File size:
268 bytes
|
| Line | |
|---|
| 1 | /* wait.c (emx+gcc) -- Copyright (c) 1990-1996 by Eberhard Mattes */
|
|---|
| 2 |
|
|---|
| 3 | #include <stdlib.h>
|
|---|
| 4 | #include <process.h>
|
|---|
| 5 | #include <errno.h>
|
|---|
| 6 | #include <emx/syscalls.h>
|
|---|
| 7 |
|
|---|
| 8 | int _wait (int *status)
|
|---|
| 9 | {
|
|---|
| 10 | int dummy;
|
|---|
| 11 |
|
|---|
| 12 | if (status == NULL)
|
|---|
| 13 | status = &dummy;
|
|---|
| 14 | return __wait (status);
|
|---|
| 15 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.