File tree 10 files changed +18
-19
lines changed
10 files changed +18
-19
lines changed Original file line number Diff line number Diff line change
1
+ #include "postgres.h"
1
2
#include "executor/spi.h"
2
3
#include "commands/trigger.h"
3
- #include "c.h" /* endof() macro */
4
4
#include <ctype.h> /* tolower */
5
5
#include <stdio.h> /* debugging */
6
6
Original file line number Diff line number Diff line change 12
12
#include <sys/ldr.h>
13
13
#include <a.out.h>
14
14
#include <ldfcn.h>
15
+ #include "postgres.h"
15
16
#include "dynloader.h"
16
- #include "c.h"
17
17
18
18
/*
19
19
* We simulate dlopen() et al. through a call to load. Because AIX has
Original file line number Diff line number Diff line change 7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/port/dynloader/hpux.c,v 1.5 1998/09/01 03:24:39 momjian Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/port/dynloader/hpux.c,v 1.6 1999/01/17 03:04:50 tgl Exp $
11
11
*
12
12
* NOTES
13
13
* all functions are defined here -- it's impossible to trace the
19
19
#include <stdio.h>
20
20
#include <a.out.h>
21
21
#include <dl.h>
22
- #include "c .h"
22
+ #include "postgres .h"
23
23
#include "fmgr.h"
24
24
#include "utils/dynamic_loader.h"
25
25
#include "dynloader.h"
Original file line number Diff line number Diff line change 9
9
*
10
10
*
11
11
* IDENTIFICATION
12
- * $Header: /cvsroot/pgsql/src/backend/port/dynloader/ultrix4.c,v 1.3 1998/09/01 03:24:41 momjian Exp $
12
+ * $Header: /cvsroot/pgsql/src/backend/port/dynloader/ultrix4.c,v 1.4 1999/01/17 03:04:50 tgl Exp $
13
13
*
14
14
*-------------------------------------------------------------------------
15
15
*/
16
16
#include <stdio.h>
17
17
#include <postgres.h>
18
18
#include "dl.h"
19
19
#include <utils/dynamic_loader.h>
20
- #include "c .h"
20
+ #include "postgres .h"
21
21
#include "fmgr.h"
22
22
#include "port-protos.h"
23
23
#include "utils/elog.h"
Original file line number Diff line number Diff line change 7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/storage/buffer/Attic/s_lock.c,v 1.15 1998/12/26 18:15:53 momjian Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/storage/buffer/Attic/s_lock.c,v 1.16 1999/01/17 03:04:51 tgl Exp $
11
11
*
12
12
*-------------------------------------------------------------------------
13
13
*/
16
16
#include <sys/time.h>
17
17
#include <unistd.h>
18
18
19
- #include "config.h"
20
- #include "c.h"
19
+ #include "postgres.h"
21
20
#include "storage/s_lock.h"
22
21
23
22
Original file line number Diff line number Diff line change 7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/utils/error/Attic/format.c,v 1.8 1999/01/01 04:48:46 momjian Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/utils/error/Attic/format.c,v 1.9 1999/01/17 03: 04:52 tgl Exp $
11
11
*
12
12
*-------------------------------------------------------------------------
13
13
*/
14
14
#include <stdio.h>
15
15
#include <stdarg.h>
16
- #include "c .h"
16
+ #include "postgres .h"
17
17
18
18
#define FormMaxSize 1024
19
19
#define FormMinSize (FormMaxSize / 8)
Original file line number Diff line number Diff line change 7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/utils/mmgr/Attic/oset.c,v 1.9 1998/09/01 03:27:05 momjian Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/utils/mmgr/Attic/oset.c,v 1.10 1999/01/17 03:04:53 tgl Exp $
11
11
*
12
12
* NOTE
13
13
* XXX This is a preliminary implementation which lacks fail-fast
14
14
* XXX validity checking of arguments.
15
15
*
16
16
*-------------------------------------------------------------------------
17
17
*/
18
- #include "c .h"
18
+ #include "postgres .h"
19
19
20
20
#include "utils/memutils.h" /* where declarations of this file goes */
21
21
Original file line number Diff line number Diff line change 7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/utils/mmgr/Attic/palloc.c,v 1.8 1998/09/01 04:33:37 momjian Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/utils/mmgr/Attic/palloc.c,v 1.9 1999/01/17 03: 04:54 tgl Exp $
11
11
*
12
12
*-------------------------------------------------------------------------
13
13
*/
14
14
15
15
#include <string.h>
16
16
17
- #include "c .h"
17
+ #include "postgres .h"
18
18
19
19
#include "utils/mcxt.h"
20
20
#include "utils/elog.h"
Original file line number Diff line number Diff line change 6
6
*
7
7
* Copyright (c) 1994, Regents of the University of California
8
8
*
9
- * $Id: pqcomm.h,v 1.31 1999/01/17 01:45:42 tgl Exp $
9
+ * $Id: pqcomm.h,v 1.32 1999/01/17 03:04:55 tgl Exp $
10
10
*
11
11
*-------------------------------------------------------------------------
12
12
*/
23
23
#include <netinet/in.h>
24
24
#endif
25
25
26
- #include "c .h"
26
+ #include "postgres .h"
27
27
28
28
/* Define a generic socket address type. */
29
29
Original file line number Diff line number Diff line change 6
6
*
7
7
* Copyright (c) 1994, Regents of the University of California
8
8
*
9
- * $Id: pqsignal.h,v 1.5 1998/09/01 04:40:15 momjian Exp $
9
+ * $Id: pqsignal.h,v 1.6 1999/01/17 03: 04:57 tgl Exp $
10
10
*
11
11
* NOTES
12
12
* This shouldn't be in libpq, but the monitor and some other
17
17
#ifndef PQSIGNAL_H
18
18
#define PQSIGNAL_H
19
19
20
- #include "c .h"
20
+ #include "postgres .h"
21
21
22
22
typedef void (* pqsigfunc ) (int );
23
23
You can’t perform that action at this time.
0 commit comments