diff options
author | Bruce Momjian <bruce@momjian.us> | 2002-11-08 20:23:57 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2002-11-08 20:23:57 +0000 |
commit | bea4792125389bb68e043ac38b0fed8790d42484 (patch) | |
tree | db74baf44f4e59126210d0651fb579709d965020 /src/backend/port/darwin/system.c | |
parent | a5715eecb60005b3292424d30de04de158cb12ad (diff) | |
download | postgresql-bea4792125389bb68e043ac38b0fed8790d42484.tar.gz postgresql-bea4792125389bb68e043ac38b0fed8790d42484.zip |
This patch removes a bunch of superfluous #include directives: if
postgres.h or c.h includes a system header (such as stdio.h or
stdlib.h), there's no need to specifically include it in any of the .c
files in the backend.
Neil Conway
Diffstat (limited to 'src/backend/port/darwin/system.c')
-rw-r--r-- | src/backend/port/darwin/system.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/backend/port/darwin/system.c b/src/backend/port/darwin/system.c index f66782eb363..a0c0801f2ab 100644 --- a/src/backend/port/darwin/system.c +++ b/src/backend/port/darwin/system.c @@ -37,11 +37,8 @@ static char sccsid[] = "@(#)system.c 8.1 (Berkeley) 6/4/93"; #endif /* LIBC_SCCS and not lint */ -#include <sys/types.h> #include <sys/wait.h> #include <signal.h> -#include <stdlib.h> -#include <stddef.h> #include <unistd.h> #include <paths.h> #include <errno.h> |