1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-22 12:22:45 +03:00

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
This commit is contained in:
Bruce Momjian
2002-11-08 20:23:57 +00:00
parent a5715eecb6
commit bea4792125
24 changed files with 18 additions and 54 deletions

View File

@@ -13,7 +13,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/main/main.c,v 1.55 2002/10/31 22:37:19 tgl Exp $
* $Header: /cvsroot/pgsql/src/backend/main/main.c,v 1.56 2002/11/08 20:23:56 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -22,7 +22,6 @@
#include <errno.h>
#include <pwd.h>
#include <unistd.h>
#include <locale.h>
#if defined(__alpha) && defined(__osf__)
#include <sys/sysinfo.h>