1
0
mirror of https://github.com/postgres/postgres.git synced 2025-08-30 06:01:21 +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

@@ -6,7 +6,6 @@
#include "postgres.h"
#include <stdio.h>
#include <errno.h>
#include "sys/ldr.h"
#include <a.out.h>

View File

@@ -43,9 +43,6 @@ static char sccsid[] = "@(#)dl.c 5.4 (Berkeley) 2/23/91";
#include <link.h>
#include <dlfcn.h>
#include <stdio.h>
#include <stdlib.h>
static char error_message[BUFSIZ];
char *

View File

@@ -42,9 +42,6 @@ static char sccsid[] = "@(#)dl.c 5.4 (Berkeley) 2/23/91";
#include <link.h>
#include <dlfcn.h>
#include <stdio.h>
#include <stdlib.h>
#include "dynloader.h"
static char error_message[BUFSIZ];

View File

@@ -3,8 +3,6 @@
#include "mach-o/rld.h"
#include "streams/streams.h"
#include <stdlib.h>
static char *lastError = NULL;
static NXStream *

View File

@@ -42,9 +42,6 @@ static char sccsid[] = "@(#)dl.c 5.4 (Berkeley) 2/23/91";
#include <link.h>
#include <dlfcn.h>
#include <stdio.h>
#include <stdlib.h>
#include "dynloader.h"
static char error_message[BUFSIZ];

View File

@@ -7,19 +7,20 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/port/dynloader/Attic/qnx4.c,v 1.3 2001/02/10 02:31:26 tgl Exp $
* $Header: /cvsroot/pgsql/src/backend/port/dynloader/Attic/qnx4.c,v 1.4 2002/11/08 20:23:56 momjian Exp $
*
* NOTES
*
*-------------------------------------------------------------------------
*/
/* System includes */
#include "postgres.h"
/*
#include <stdio.h>
#include <a.out.h>
#include <dl.h>
*/
#include "postgres.h"
#include "utils/dynamic_loader.h"
#include "dynloader.h"

View File

@@ -1,6 +1,6 @@
/*-------------------------------------------------------------------------
*
* dynloader.c
* ultrix4.c
* This dynamic loader uses Andrew Yu's libdl-1.0 package for Ultrix 4.x.
*
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/port/dynloader/ultrix4.c,v 1.15 2002/06/20 20:29:33 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/port/dynloader/ultrix4.c,v 1.16 2002/11/08 20:23:56 momjian Exp $
*
*-------------------------------------------------------------------------
*/