diff options
author | Bruce Momjian <bruce@momjian.us> | 1999-07-17 20:18:55 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1999-07-17 20:18:55 +0000 |
commit | 3406901a2928627477374769416a32b01a08b131 (patch) | |
tree | e045a16716bbeb4b90ed143260887e23f96939f5 /src/backend/bootstrap/bootstrap.c | |
parent | c62b8a68bf60a451f57fd026bacc91648de7433a (diff) | |
download | postgresql-3406901a2928627477374769416a32b01a08b131.tar.gz postgresql-3406901a2928627477374769416a32b01a08b131.zip |
Move some system includes into c.h, and remove duplicates.
Diffstat (limited to 'src/backend/bootstrap/bootstrap.c')
-rw-r--r-- | src/backend/bootstrap/bootstrap.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/backend/bootstrap/bootstrap.c b/src/backend/bootstrap/bootstrap.c index 6253bf5cd5a..fc357d87a79 100644 --- a/src/backend/bootstrap/bootstrap.c +++ b/src/backend/bootstrap/bootstrap.c @@ -7,16 +7,14 @@ * Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/bootstrap/bootstrap.c,v 1.64 1999/07/16 04:58:35 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/bootstrap/bootstrap.c,v 1.65 1999/07/17 20:16:47 momjian Exp $ * *------------------------------------------------------------------------- */ #include <unistd.h> #include <time.h> -#include <stdio.h> #include <signal.h> #include <setjmp.h> -#include <string.h> #ifdef __CYGWIN32__ #include <getopt.h> #endif @@ -39,10 +37,6 @@ #include "utils/lsyscache.h" #include "utils/portal.h" -#ifndef HAVE_MEMMOVE -#include <regex/utils.h> -#endif - #define ALLOC(t, c) (t *)calloc((unsigned)(c), sizeof(t)) #define FIRST_TYPE_OID 16 /* OID of the first type */ |