diff options
author | Ulrich Drepper <drepper@redhat.com> | 2001-01-28 05:38:29 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2001-01-28 05:38:29 +0000 |
commit | 73b6bffcfb54e7d59146746da597161fbcb11b76 (patch) | |
tree | 0e1b7d8edb74a50d1ddfd6ddd800426fd7c3fd14 /posix/sys | |
parent | 8be918b7bb2abe46fab6c5f6e8ce3bac4da143ad (diff) | |
download | glibc-73b6bffcfb54e7d59146746da597161fbcb11b76.tar glibc-73b6bffcfb54e7d59146746da597161fbcb11b76.tar.gz glibc-73b6bffcfb54e7d59146746da597161fbcb11b76.tar.bz2 glibc-73b6bffcfb54e7d59146746da597161fbcb11b76.zip |
Update.
* conform/data/time.h-data: CLK_TCK is not in XPG6. Fix tzname entry.
* sysdeps/mach/hurd/bits/time.h: Don't define CLK_TCK for XPG6.
* sysdeps/mach/hurd/i386/bits/time.h: Likewise.
* sysdeps/unix/sysv/linux/bits/time.h: Likewise.
* sysdeps/unix/sysv/linux/alpha/bits/time.h: Likewise.
* sysdeps/unix/sysv/linux/i386/bits/time.h: Likewise.
* sysdeps/unix/sysv/linux/ia64/bits/time.h: Likewise.
* time/time.h: Likewise.
* conform/conformtest.pl (@headers): Add complex.h and tgmath.h.
* conform/data/complex.h-data: New file.
* conform/data/tgmath.h-data: New file.
* conform/data/wchar.h-data: Add missing functions.
* sysdeps/gnu/bits/utmpx.h: Define RUN_LVL only if __USE_GNU.
* conform/data/termios.h-data: Add missing const in tcsetattr()
prototype.
* posix/sys/wait.h: Include <signal.h> and <sys/resource.h>.
Don't define pid_t here.
* conform/data/sys/utsname.h-data: Don't provide fixed array sizes.
Diffstat (limited to 'posix/sys')
-rw-r--r-- | posix/sys/wait.h | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/posix/sys/wait.h b/posix/sys/wait.h index 36cc9254ac..1f43f77d07 100644 --- a/posix/sys/wait.h +++ b/posix/sys/wait.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991,92,93,94,96,97,98,99, 2000 Free Software Foundation, Inc. +/* Copyright (C) 1991-1994,96,97,98,99,2000,2001 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -27,12 +27,8 @@ __BEGIN_DECLS -#include <bits/types.h> - -#if defined __USE_XOPEN && !defined __pid_t_defined -typedef __pid_t pid_t; -# define __pid_t_defined -#endif +#include <signal.h> +#include <sys/resource.h> /* These macros could also be defined int <stdlib.h>. */ #if !defined _STDLIB_H || !defined __USE_XOPEN |