File tree 7 files changed +37
-34
lines changed
7 files changed +37
-34
lines changed Original file line number Diff line number Diff line change 7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/lib/Attic/bit.c,v 1.3 1996/11/06 06:47:53 scrappy Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/lib/Attic/bit.c,v 1.4 1996/11/06 08:27:09 scrappy Exp $
11
11
*
12
12
*-------------------------------------------------------------------------
13
13
*/
14
14
15
15
/*
16
16
* utils/memutils.h contains declarations of the functions in this file
17
17
*/
18
- #include " postgres.h"
18
+ #include < postgres.h>
19
19
20
- #include " utils/bit.h"
21
- #include " utils/memutils.h"
20
+ #include < utils/bit.h>
21
+ #include < utils/memutils.h>
22
22
23
23
void
24
24
BitArraySetBit (BitArray bitArray , BitIndex bitIndex )
Original file line number Diff line number Diff line change 9
9
*
10
10
*
11
11
* IDENTIFICATION
12
- * $Header: /cvsroot/pgsql/src/backend/lib/dllist.c,v 1.2 1996/10/31 10:26:30 scrappy Exp $
12
+ * $Header: /cvsroot/pgsql/src/backend/lib/dllist.c,v 1.3 1996/11/06 08:27:11 scrappy Exp $
13
13
*
14
14
*-------------------------------------------------------------------------
15
15
*/
16
16
17
- #include " postgres.h"
17
+ #include < postgres.h>
18
18
19
- #include " lib/dllist.h"
19
+ #include < lib/dllist.h>
20
20
21
21
Dllist *
22
22
DLNewList ()
Original file line number Diff line number Diff line change 7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/lib/Attic/fstack.c,v 1.2 1996/10/31 10:26:31 scrappy Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/lib/Attic/fstack.c,v 1.3 1996/11/06 08:27:12 scrappy Exp $
11
11
*
12
12
*-------------------------------------------------------------------------
13
13
*/
14
- #include "postgres.h"
15
- #include "lib/fstack.h"
14
+ #include <postgres.h>
15
+
16
+ #include <lib/fstack.h>
16
17
17
18
/*
18
19
* Internal function definitions
Original file line number Diff line number Diff line change 8
8
*
9
9
*
10
10
* IDENTIFICATION
11
- * $Header: /cvsroot/pgsql/src/backend/lib/Attic/hasht.c,v 1.2 1996/10/31 10:26:32 scrappy Exp $
11
+ * $Header: /cvsroot/pgsql/src/backend/lib/Attic/hasht.c,v 1.3 1996/11/06 08:27:13 scrappy Exp $
12
12
*
13
13
*-------------------------------------------------------------------------
14
14
*/
15
- #include " postgres.h"
16
- #include "utils/memutils.h"
17
- #include " utils/elog.h"
18
- #include " utils/hsearch.h"
19
- #include " lib/hasht.h"
15
+ #include < postgres.h>
16
+
17
+ #include < utils/memutils.h>
18
+ #include < utils/hsearch.h>
19
+ #include < lib/hasht.h>
20
20
21
21
/* -----------------------------------
22
22
* HashTableWalk
Original file line number Diff line number Diff line change 6
6
*
7
7
*
8
8
* IDENTIFICATION
9
- * $Header: /cvsroot/pgsql/src/backend/lib/Attic/lispsort.c,v 1.2 1996/10/31 10:26:33 scrappy Exp $
9
+ * $Header: /cvsroot/pgsql/src/backend/lib/Attic/lispsort.c,v 1.3 1996/11/06 08:27:14 scrappy Exp $
10
10
*
11
11
*-------------------------------------------------------------------------
12
12
*/
13
13
14
14
#include <sys/types.h>
15
15
16
- #include " postgres.h"
16
+ #include < postgres.h>
17
17
18
- #include "nodes/pg_list.h"
19
- #include "nodes/primnodes.h"
20
- #include "nodes/plannodes.h"
21
- #include "nodes/relation.h"
22
- #include "lib/lispsort.h"
23
- #include "utils/palloc.h"
24
- #include "lib/qsort.h"
18
+ #include <nodes/pg_list.h>
19
+ #include <nodes/primnodes.h>
20
+ #include <nodes/plannodes.h>
21
+ #include <nodes/relation.h>
22
+ #include <lib/lispsort.h>
23
+ #include <lib/qsort.h>
25
24
26
25
/*
27
26
** lisp_qsort: Takes a lisp list as input, copies it into an array of lisp
Original file line number Diff line number Diff line change 7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/lib/Attic/qsort.c,v 1.1.1.1 1996/07/09 06:21:29 scrappy Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/lib/Attic/qsort.c,v 1.2 1996/11/06 08:27:15 scrappy Exp $
11
11
*
12
12
*-------------------------------------------------------------------------
13
13
*/
48
48
static char sccsid [] = "@(#)qsort.c 5.9 (Berkeley) 2/23/91" ;
49
49
#endif /* LIBC_SCCS and not lint */
50
50
51
- #include "postgres.h"
52
- #include "lib/qsort.h"
51
+ #include <sys/types.h>
52
+
53
+ #include <postgres.h>
54
+
55
+ #include <lib/qsort.h>
53
56
54
57
/*
55
58
* MTHRESH is the smallest partition for which we compare for a median
Original file line number Diff line number Diff line change 9
9
*
10
10
*
11
11
* IDENTIFICATION
12
- * $Header: /cvsroot/pgsql/src/backend/lib/stringinfo.c,v 1.1.1.1 1996/07/09 06:21:29 scrappy Exp $
12
+ * $Header: /cvsroot/pgsql/src/backend/lib/stringinfo.c,v 1.2 1996/11/06 08:27:16 scrappy Exp $
13
13
*
14
14
*-------------------------------------------------------------------------
15
15
*/
16
16
#include <string.h>
17
- #include "postgres.h"
18
- #include "nodes/pg_list.h"
19
- #include "lib/stringinfo.h"
20
- #include "utils/elog.h"
21
- #include "utils/palloc.h"
17
+
18
+ #include <postgres.h>
19
+
20
+ #include <nodes/pg_list.h>
21
+ #include <lib/stringinfo.h>
22
22
23
23
/*---------------------------------------------------------------------
24
24
* makeStringInfo
You can’t perform that action at this time.
0 commit comments