diff options
Diffstat (limited to 'usr/src/lib/libc/port/gen/waitpid.c')
| -rw-r--r-- | usr/src/lib/libc/port/gen/waitpid.c | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/usr/src/lib/libc/port/gen/waitpid.c b/usr/src/lib/libc/port/gen/waitpid.c index 3a7d66330e..8f67f2dd40 100644 --- a/usr/src/lib/libc/port/gen/waitpid.c +++ b/usr/src/lib/libc/port/gen/waitpid.c @@ -24,20 +24,18 @@ * Use is subject to license terms. */ -#pragma ident "%Z%%M% %I% %E% SMI" - /* Copyright (c) 1988 AT&T */ /* All Rights Reserved */ +#pragma ident "%Z%%M% %I% %E% SMI" + /* - * All of these functions are cancellation points. + * All of the wait*() functions are cancellation points. */ -#pragma weak waitpid = _waitpid -#pragma weak wait = _wait -#pragma weak wait4 = _wait4 -#pragma weak wait3 = _wait3 +#pragma weak _waitpid = waitpid +#pragma weak _wait = wait -#include "synonyms.h" +#include "lint.h" #include <unistd.h> #include <string.h> #include <errno.h> |
