summaryrefslogtreecommitdiff
path: root/src/include/utils
diff options
context:
space:
mode:
authorMarc G. Fournier1996-11-04 07:46:06 +0000
committerMarc G. Fournier1996-11-04 07:46:06 +0000
commit5a5f9420e5fbfd44e720b3bb08bd4fd3a6a1ee0d (patch)
treefcb5e8982f5f1b411987892b1ab34fd764ab32ae /src/include/utils
parentd93d3c843af1eafb7cf6e0f79693a4cf3cc8a7af (diff)
Another series started from utils/builtins.h
Diffstat (limited to 'src/include/utils')
-rw-r--r--src/include/utils/builtins.h13
-rw-r--r--src/include/utils/geo-decls.h3
-rw-r--r--src/include/utils/rel.h14
3 files changed, 13 insertions, 17 deletions
diff --git a/src/include/utils/builtins.h b/src/include/utils/builtins.h
index 24491453be4..3ebc076f2cd 100644
--- a/src/include/utils/builtins.h
+++ b/src/include/utils/builtins.h
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: builtins.h,v 1.4 1996/11/04 04:00:43 momjian Exp $
+ * $Id: builtins.h,v 1.5 1996/11/04 07:46:00 scrappy Exp $
*
* NOTES
* This should normally only be included by fmgr.h.
@@ -18,10 +18,10 @@
#ifndef BUILTINS_H
#define BUILTINS_H
-#include "storage/itemptr.h"
-#include "utils/nabstime.h"
-#include "utils/geo-decls.h"
-#include "utils/rel.h"
+#include <storage/itemptr.h>
+#include <utils/rel.h>
+#include <utils/nabstime.h>
+#include <utils/geo-decls.h>
/*
* Defined in adt/
@@ -228,7 +228,6 @@ extern POLYGON *rt_poly_inter();
extern int32 pqtest(struct varlena *vlena);
/* arrayfuncs.c */
-#include "utils/array.h"
/* date.c */
extern int32 reltimein(char *timestring);
@@ -335,7 +334,6 @@ extern long float84gt(float64 arg1, float32 arg2);
extern long float84ge(float64 arg1, float32 arg2);
/* geo-ops.c, geo-selfuncs.c */
-#include "utils/geo-decls.h"
/* misc.c */
extern bool NullValue(Datum value, bool *isNull);
@@ -425,6 +423,5 @@ extern struct varlena *byteaSetByte(struct varlena *v, int32 n, int32 newByte);
extern struct varlena *byteaSetBit(struct varlena *v, int32 n, int32 newBit);
/* acl.c */
-#include "utils/acl.h"
#endif /* BUILTINS_H */
diff --git a/src/include/utils/geo-decls.h b/src/include/utils/geo-decls.h
index 5cf26925b69..c5be8b93ca0 100644
--- a/src/include/utils/geo-decls.h
+++ b/src/include/utils/geo-decls.h
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: geo-decls.h,v 1.2 1996/10/31 09:51:18 scrappy Exp $
+ * $Id: geo-decls.h,v 1.3 1996/11/04 07:46:04 scrappy Exp $
*
* NOTE
* These routines do *not* use the float types from adt/.
@@ -24,7 +24,6 @@
* Useful floating point utilities and constants.
*-------------------------------------------------------------------*/
-#include <math.h>
#define EPSILON 1.0E-06
diff --git a/src/include/utils/rel.h b/src/include/utils/rel.h
index dbcd7e0f403..8ea8ed4b756 100644
--- a/src/include/utils/rel.h
+++ b/src/include/utils/rel.h
@@ -6,19 +6,19 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: rel.h,v 1.5 1996/11/01 09:31:17 scrappy Exp $
+ * $Id: rel.h,v 1.6 1996/11/04 07:46:06 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
#ifndef REL_H
#define REL_H
-#include "access/strat.h"
-#include "rewrite/prs2lock.h"
-#include "access/tupdesc.h"
-#include "catalog/pg_class.h"
-#include "catalog/pg_am.h"
-#include "storage/fd.h"
+#include <access/strat.h>
+#include <rewrite/prs2lock.h>
+#include <access/tupdesc.h>
+#include <catalog/pg_class.h>
+#include <catalog/pg_am.h>
+#include <storage/fd.h>
typedef struct RelationData {
File rd_fd; /* open file descriptor */