File tree Expand file tree Collapse file tree 2 files changed +3
-27
lines changed Expand file tree Collapse file tree 2 files changed +3
-27
lines changed Original file line number Diff line number Diff line change 1
- /* system stuff */
2
- #include <stdio.h>
3
- #include <stdlib.h>
4
- #include <stdarg.h>
5
- #include <unistd.h>
6
- #include <fcntl.h>
7
- #include <string.h>
8
- #include <setjmp.h>
9
-
10
- /* postgreSQL stuff */
11
- #include "executor/spi.h"
12
- #include "commands/trigger.h"
13
- #include "utils/elog.h"
14
- #include "utils/builtins.h"
15
- #include "fmgr.h"
16
- #include "access/heapam.h"
17
-
18
- #include "tcop/tcopprot.h"
19
- #include "utils/syscache.h"
20
- #include "catalog/pg_proc.h"
21
- #include "catalog/pg_type.h"
1
+ /* this must be first: */
2
+ #include "postgres.h"
22
3
23
4
/* perl stuff */
24
5
#include "EXTERN.h"
Original file line number Diff line number Diff line change 33
33
* ENHANCEMENTS, OR MODIFICATIONS.
34
34
*
35
35
* IDENTIFICATION
36
- * $Header: /cvsroot/pgsql/src/pl/plperl/plperl.c,v 1.33 2002/09/04 20:31:47 momjian Exp $
36
+ * $Header: /cvsroot/pgsql/src/pl/plperl/plperl.c,v 1.34 2002/09/04 22:49:37 tgl Exp $
37
37
*
38
38
**********************************************************************/
39
39
40
40
#include "postgres.h"
41
41
42
42
/* system stuff */
43
- #include <stdio.h>
44
- #include <stdlib.h>
45
- #include <stdarg.h>
46
43
#include <unistd.h>
47
44
#include <fcntl.h>
48
- #include <string.h>
49
45
#include <setjmp.h>
50
46
51
47
/* postgreSQL stuff */
54
50
#include "utils/elog.h"
55
51
#include "fmgr.h"
56
52
#include "access/heapam.h"
57
-
58
53
#include "tcop/tcopprot.h"
59
54
#include "utils/syscache.h"
60
55
#include "catalog/pg_language.h"
You can’t perform that action at this time.
0 commit comments