diff options
author | Marc G. Fournier <scrappy@hub.org> | 1999-08-02 05:57:07 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1999-08-02 05:57:07 +0000 |
commit | 10ace1fac8d9f2aa887a1095340e218430928fce (patch) | |
tree | 9d6bb091bfbf0b16bb7ad29e5c042de12ee4b678 /src/backend/bootstrap/bootstrap.c | |
parent | 9a8aeb23a19ee6833480d4c12719d9fd26ad8571 (diff) |
Another mass of them... just #include file changes and/or DOUBLEALIGN->MAXALIGN
Diffstat (limited to 'src/backend/bootstrap/bootstrap.c')
-rw-r--r-- | src/backend/bootstrap/bootstrap.c | 60 |
1 files changed, 6 insertions, 54 deletions
diff --git a/src/backend/bootstrap/bootstrap.c b/src/backend/bootstrap/bootstrap.c index 6c7e7c16fa1..3de16c3c49c 100644 --- a/src/backend/bootstrap/bootstrap.c +++ b/src/backend/bootstrap/bootstrap.c @@ -7,82 +7,34 @@ * Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/bootstrap/bootstrap.c,v 1.60 1999/05/25 16:07:56 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/bootstrap/bootstrap.c,v 1.60.2.1 1999/08/02 05:56:52 scrappy Exp $ * *------------------------------------------------------------------------- */ -#include <unistd.h> /* For getopt() */ +#include <unistd.h> #include <time.h> -#include <stdio.h> #include <signal.h> #include <setjmp.h> -#include <string.h> -#ifdef __CYGWIN32__ -#include <getopt.h> -#endif #define BOOTSTRAP_INCLUDE /* mask out stuff in tcop/tcopprot.h */ #include "postgres.h" +#ifdef HAVE_GETOPT_H +#include <getopt.h> +#endif -#include "miscadmin.h" -#include "fmgr.h" - -#include "access/attnum.h" -#include "access/funcindex.h" #include "access/genam.h" #include "access/heapam.h" -#include "access/htup.h" -#include "access/itup.h" -#include "access/relscan.h" -#include "access/sdir.h" -#include "access/skey.h" -#include "access/strat.h" -#include "access/tupdesc.h" -#include "access/xact.h" #include "bootstrap/bootstrap.h" #include "catalog/catname.h" #include "catalog/index.h" -#include "catalog/pg_am.h" -#include "catalog/pg_attribute.h" -#include "catalog/pg_class.h" #include "catalog/pg_type.h" -#include "executor/execdesc.h" -#include "executor/hashjoin.h" -#include "executor/tuptable.h" #include "libpq/pqsignal.h" -#include "nodes/execnodes.h" -#include "nodes/memnodes.h" -#include "nodes/nodes.h" -#include "nodes/params.h" -#include "nodes/parsenodes.h" -#include "nodes/plannodes.h" -#include "nodes/pg_list.h" -#include "nodes/primnodes.h" -#include "rewrite/prs2lock.h" -#include "storage/block.h" -#include "storage/buf.h" -#include "storage/fd.h" -#include "storage/ipc.h" -#include "storage/itemptr.h" -#include "storage/lock.h" -#include "storage/off.h" -#include "storage/shmem.h" -#include "storage/spin.h" -#include "tcop/dest.h" +#include "miscadmin.h" #include "tcop/tcopprot.h" #include "utils/builtins.h" -#include "utils/geo_decls.h" -#include "utils/hsearch.h" #include "utils/lsyscache.h" -#include "utils/mcxt.h" -#include "utils/nabstime.h" #include "utils/portal.h" -#include "utils/rel.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 */ |