1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-10 17:42:29 +03:00

Change #include's to use <> and "" as appropriate.

This commit is contained in:
Bruce Momjian
1999-07-15 23:04:24 +00:00
parent 2e6b1e63a3
commit a9591ce66a
211 changed files with 784 additions and 784 deletions

View File

@@ -9,9 +9,9 @@
#include <string.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/ldr.h>
#include "sys/ldr.h"
#include <a.out.h>
#include <ldfcn.h>
#include "ldfcn.h"
#include "postgres.h"
#include "dynloader.h"

View File

@@ -38,7 +38,7 @@ static char sccsid[] = "@(#)dl.c 5.4 (Berkeley) 2/23/91";
#include <sys/types.h>
#include <nlist.h>
#include <link.h>
#include "link.h"
#include <dlfcn.h>
#include <stdio.h>

View File

@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: bsd.h,v 1.3 1999/02/13 23:17:16 momjian Exp $
* $Id: bsd.h,v 1.4 1999/07/15 23:03:19 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -15,7 +15,7 @@
#include <sys/types.h>
#include <nlist.h>
#include <link.h>
#include "link.h"
#include "postgres.h"

View File

@@ -38,7 +38,7 @@ static char sccsid[] = "@(#)dl.c 5.4 (Berkeley) 2/23/91";
#include <sys/types.h>
#include <nlist.h>
#include <link.h>
#include "link.h"
#include <dlfcn.h>
#include <stdio.h>

View File

@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: freebsd.h,v 1.2 1999/02/13 23:17:19 momjian Exp $
* $Id: freebsd.h,v 1.3 1999/07/15 23:03:20 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -15,7 +15,7 @@
#include <sys/types.h>
#include <nlist.h>
#include <link.h>
#include "link.h"
#include "postgres.h"

View File

@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/port/dynloader/hpux.c,v 1.7 1999/02/13 23:17:20 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/port/dynloader/hpux.c,v 1.8 1999/07/15 23:03:20 momjian Exp $
*
* NOTES
* all functions are defined here -- it's impossible to trace the
@@ -18,7 +18,7 @@
/* System includes */
#include <stdio.h>
#include <a.out.h>
#include <dl.h>
#include "dl.h"
#include "postgres.h"
#include "fmgr.h"
#include "utils/dynamic_loader.h"

View File

@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: linux.h,v 1.5 1999/02/13 23:17:23 momjian Exp $
* $Id: linux.h,v 1.6 1999/07/15 23:03:20 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -16,7 +16,7 @@
#include "fmgr.h" /* for func_ptr */
#include "utils/dynamic_loader.h"
#ifdef __ELF__
#include "dlfcn.h"
#include <dlfcn.h>
#endif
/* dynloader.c */

View File

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

View File

@@ -9,14 +9,14 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/port/dynloader/ultrix4.c,v 1.6 1999/07/15 15:19:36 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/port/dynloader/ultrix4.c,v 1.7 1999/07/15 23:03:20 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#include <stdio.h>
#include <postgres.h>
#include "postgres.h"
#include "dl.h"
#include <utils/dynamic_loader.h>
#include "utils/dynamic_loader.h"
#include "postgres.h"
#include "fmgr.h"
#include "port-protos.h"

View File

@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: ultrix4.h,v 1.3 1999/02/13 23:17:29 momjian Exp $
* $Id: ultrix4.h,v 1.4 1999/07/15 23:03:21 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -35,11 +35,11 @@
#define _DL_HEADER_
#include <stdio.h> /* needed to declare FILE for ldfcn.h */
#include <filehdr.h>
#include <syms.h>
#include <ldfcn.h>
#include <reloc.h>
#include <scnhdr.h>
#include "filehdr.h"
#include "syms.h"
#include "ldfcn.h"
#include "reloc.h"
#include "scnhdr.h"
typedef long CoreAddr;