Skip to content
Snippets Groups Projects
Commit e2329091 authored by Marc G. Fournier's avatar Marc G. Fournier
Browse files

Slowly getting faster to make sure it compiles...still needs cleaning

up, but one thing at a time :)
parent 7385619f
Branches
Tags
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/lib/Attic/bit.c,v 1.3 1996/11/06 06:47:53 scrappy Exp $ * $Header: /cvsroot/pgsql/src/backend/lib/Attic/bit.c,v 1.4 1996/11/06 08:27:09 scrappy Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -15,10 +15,10 @@ ...@@ -15,10 +15,10 @@
/* /*
* utils/memutils.h contains declarations of the functions in this file * utils/memutils.h contains declarations of the functions in this file
*/ */
#include "postgres.h" #include <postgres.h>
#include "utils/bit.h" #include <utils/bit.h>
#include "utils/memutils.h" #include <utils/memutils.h>
void void
BitArraySetBit(BitArray bitArray, BitIndex bitIndex) BitArraySetBit(BitArray bitArray, BitIndex bitIndex)
......
...@@ -9,14 +9,14 @@ ...@@ -9,14 +9,14 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/lib/dllist.c,v 1.2 1996/10/31 10:26:30 scrappy Exp $ * $Header: /cvsroot/pgsql/src/backend/lib/dllist.c,v 1.3 1996/11/06 08:27:11 scrappy Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
#include "postgres.h" #include <postgres.h>
#include "lib/dllist.h" #include <lib/dllist.h>
Dllist* Dllist*
DLNewList() DLNewList()
......
...@@ -7,12 +7,13 @@ ...@@ -7,12 +7,13 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/lib/Attic/fstack.c,v 1.2 1996/10/31 10:26:31 scrappy Exp $ * $Header: /cvsroot/pgsql/src/backend/lib/Attic/fstack.c,v 1.3 1996/11/06 08:27:12 scrappy Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
#include "postgres.h" #include <postgres.h>
#include "lib/fstack.h"
#include <lib/fstack.h>
/* /*
* Internal function definitions * Internal function definitions
......
...@@ -8,15 +8,15 @@ ...@@ -8,15 +8,15 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/lib/Attic/hasht.c,v 1.2 1996/10/31 10:26:32 scrappy Exp $ * $Header: /cvsroot/pgsql/src/backend/lib/Attic/hasht.c,v 1.3 1996/11/06 08:27:13 scrappy Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
#include "postgres.h" #include <postgres.h>
#include "utils/memutils.h"
#include "utils/elog.h" #include <utils/memutils.h>
#include "utils/hsearch.h" #include <utils/hsearch.h>
#include "lib/hasht.h" #include <lib/hasht.h>
/* ----------------------------------- /* -----------------------------------
* HashTableWalk * HashTableWalk
......
...@@ -6,22 +6,21 @@ ...@@ -6,22 +6,21 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/lib/Attic/lispsort.c,v 1.2 1996/10/31 10:26:33 scrappy Exp $ * $Header: /cvsroot/pgsql/src/backend/lib/Attic/lispsort.c,v 1.3 1996/11/06 08:27:14 scrappy Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
#include <sys/types.h> #include <sys/types.h>
#include "postgres.h" #include <postgres.h>
#include "nodes/pg_list.h" #include <nodes/pg_list.h>
#include "nodes/primnodes.h" #include <nodes/primnodes.h>
#include "nodes/plannodes.h" #include <nodes/plannodes.h>
#include "nodes/relation.h" #include <nodes/relation.h>
#include "lib/lispsort.h" #include <lib/lispsort.h>
#include "utils/palloc.h" #include <lib/qsort.h>
#include "lib/qsort.h"
/* /*
** lisp_qsort: Takes a lisp list as input, copies it into an array of lisp ** lisp_qsort: Takes a lisp list as input, copies it into an array of lisp
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/lib/Attic/qsort.c,v 1.1.1.1 1996/07/09 06:21:29 scrappy Exp $ * $Header: /cvsroot/pgsql/src/backend/lib/Attic/qsort.c,v 1.2 1996/11/06 08:27:15 scrappy Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -48,8 +48,11 @@ ...@@ -48,8 +48,11 @@
static char sccsid[] = "@(#)qsort.c 5.9 (Berkeley) 2/23/91"; static char sccsid[] = "@(#)qsort.c 5.9 (Berkeley) 2/23/91";
#endif /* LIBC_SCCS and not lint */ #endif /* LIBC_SCCS and not lint */
#include "postgres.h" #include <sys/types.h>
#include "lib/qsort.h"
#include <postgres.h>
#include <lib/qsort.h>
/* /*
* MTHRESH is the smallest partition for which we compare for a median * MTHRESH is the smallest partition for which we compare for a median
......
...@@ -9,16 +9,16 @@ ...@@ -9,16 +9,16 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/lib/stringinfo.c,v 1.1.1.1 1996/07/09 06:21:29 scrappy Exp $ * $Header: /cvsroot/pgsql/src/backend/lib/stringinfo.c,v 1.2 1996/11/06 08:27:16 scrappy Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
#include <string.h> #include <string.h>
#include "postgres.h"
#include "nodes/pg_list.h" #include <postgres.h>
#include "lib/stringinfo.h"
#include "utils/elog.h" #include <nodes/pg_list.h>
#include "utils/palloc.h" #include <lib/stringinfo.h>
/*--------------------------------------------------------------------- /*---------------------------------------------------------------------
* makeStringInfo * makeStringInfo
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment