]> git.ipfire.org Git - thirdparty/postgresql.git/commitdiff
More include merges from -current, following a clean compile...
authorMarc G. Fournier <scrappy@hub.org>
Fri, 30 Jul 1999 18:27:02 +0000 (18:27 +0000)
committerMarc G. Fournier <scrappy@hub.org>
Fri, 30 Jul 1999 18:27:02 +0000 (18:27 +0000)
14 files changed:
src/include/access/genam.h
src/include/access/heapam.h
src/include/access/ibit.h
src/include/access/iqual.h
src/include/access/printtup.h
src/include/access/rtscan.h
src/include/access/skey.h
src/include/access/strat.h
src/include/access/transam.h
src/include/access/tupdesc.h
src/include/access/tupmacs.h
src/include/access/xact.h
src/include/bootstrap/bootstrap.h
src/include/c.h

index b2e55df620ed54d6d030e80845557e7c7dffa968..db6910620b2b52ce901e86733a6de9cd4a5e0703 100644 (file)
@@ -6,17 +6,17 @@
  *
  * Copyright (c) 1994, Regents of the University of California
  *
- * $Id: genam.h,v 1.18 1999/02/13 23:20:50 momjian Exp $
+ * $Id: genam.h,v 1.18.2.1 1999/07/30 18:26:58 scrappy Exp $
  *
  *-------------------------------------------------------------------------
  */
 #ifndef GENAM_H
 #define GENAM_H
 
-#include <access/sdir.h>
-#include <access/funcindex.h>
-#include <access/relscan.h>
-#include <access/itup.h>
+#include "access/funcindex.h"
+#include "access/itup.h"
+#include "access/relscan.h"
+#include "access/sdir.h"
 
 /* ----------------
  *             generalized index_ interface routines
index 17f5f2aede6b7a02de17b9a2c0ed97250609c08d..6a930747bfe042f8a2243a55f930d181c22db932 100644 (file)
@@ -6,20 +6,20 @@
  *
  * Copyright (c) 1994, Regents of the University of California
  *
- * $Id: heapam.h,v 1.43 1999/07/10 22:06:26 tgl Exp $
+ * $Id: heapam.h,v 1.43.2.1 1999/07/30 18:26:58 scrappy Exp $
  *
  *-------------------------------------------------------------------------
  */
 #ifndef HEAPAM_H
 #define HEAPAM_H
 
-#include "access/tupmacs.h"
+#include <time.h>
 #include "access/htup.h"
 #include "access/relscan.h"
+#include "access/tupmacs.h"
 #include "storage/block.h"
 #include "utils/rel.h"
 #include "utils/tqual.h"
-#include <time.h>
 
 /* ----------------------------------------------------------------
  *                             heap access method statistics
index acbe22b6a1d0de16f8ffa8dd49f041914306e348..f2a89fcafc1304575abc4547c4c75cb57bb5c824 100644 (file)
@@ -6,14 +6,14 @@
  *
  * Copyright (c) 1994, Regents of the University of California
  *
- * $Id: ibit.h,v 1.9 1999/02/13 23:20:54 momjian Exp $
+ * $Id: ibit.h,v 1.9.2.1 1999/07/30 18:26:59 scrappy Exp $
  *
  *-------------------------------------------------------------------------
  */
 #ifndef IBIT_H
 #define IBIT_H
 
-#include <utils/memutils.h>
+#include "utils/memutils.h"
 
 typedef struct IndexAttributeBitMapData
 {
index be765ab4ec71f34f3dd16d842a59092b6cdef9fd..59d62a0b2d044d4051a8792f4b4a3e19c7715429 100644 (file)
@@ -6,15 +6,15 @@
  *
  * Copyright (c) 1994, Regents of the University of California
  *
- * $Id: iqual.h,v 1.11 1999/02/13 23:20:55 momjian Exp $
+ * $Id: iqual.h,v 1.11.2.1 1999/07/30 18:26:59 scrappy Exp $
  *
  *-------------------------------------------------------------------------
  */
 #ifndef IQUAL_H
 #define IQUAL_H
 
-#include <access/skey.h>
-#include <access/itup.h>
+#include "access/itup.h"
+#include "access/skey.h"
 
 
 /* ----------------
index 0fce96e73a246c379819ff9da01fd4d714191520..178bcc2bbe2541273c1f2b72395103dd1fc165d4 100644 (file)
@@ -6,14 +6,14 @@
  *
  * Copyright (c) 1994, Regents of the University of California
  *
- * $Id: printtup.h,v 1.10 1999/05/25 22:42:32 momjian Exp $
+ * $Id: printtup.h,v 1.10.2.1 1999/07/30 18:26:59 scrappy Exp $
  *
  *-------------------------------------------------------------------------
  */
 #ifndef PRINTTUP_H
 #define PRINTTUP_H
 
-#include <tcop/dest.h>
+#include "tcop/dest.h"
 
 extern DestReceiver *printtup_create_DR(void);
 extern void showatts(char *name, TupleDesc attinfo);
index 88932322d33cb0226d4cdeeb5ced100365855231..c393c66e885b56ba9a186198a52a2dc16781388c 100644 (file)
@@ -6,16 +6,16 @@
  *
  * Copyright (c) 1994, Regents of the University of California
  *
- * $Id: rtscan.h,v 1.6 1999/02/13 23:20:58 momjian Exp $
+ * $Id: rtscan.h,v 1.6.2.1 1999/07/30 18:26:59 scrappy Exp $
  *
  *-------------------------------------------------------------------------
  */
 #ifndef RTSCAN_H
 #define RTSCAN_H
 
-#include <utils/rel.h>
-#include <storage/block.h>
-#include <storage/off.h>
+#include "storage/block.h"
+#include "storage/off.h"
+#include "utils/rel.h"
 
 void           rtadjscans(Relation r, int op, BlockNumber blkno, OffsetNumber offnum);
 
index 57cc7e0d4443599d877812d4592877cba34a0893..732f4111dc3b63039d6cb9a44e350f8ba67dec5a 100644 (file)
@@ -6,7 +6,7 @@
  *
  * Copyright (c) 1994, Regents of the University of California
  *
- * $Id: skey.h,v 1.11 1999/02/13 23:20:58 momjian Exp $
+ * $Id: skey.h,v 1.11.2.1 1999/07/30 18:26:59 scrappy Exp $
  *
  *
  * Note:
@@ -16,8 +16,8 @@
 #ifndef SKEY_H
 #define SKEY_H
 
-#include <access/attnum.h>
-#include <fmgr.h>
+#include "access/attnum.h"
+#include "fmgr.h"
 
 typedef struct ScanKeyData
 {
index b1e58f08dbefc175232f85d9f5540659b555a6bf..a12ab537fa6675c40c474e80f4af9bc02f18b349 100644 (file)
@@ -7,14 +7,14 @@
  *
  * Copyright (c) 1994, Regents of the University of California
  *
- * $Id: strat.h,v 1.15 1999/05/25 22:42:34 momjian Exp $
+ * $Id: strat.h,v 1.15.2.1 1999/07/30 18:26:59 scrappy Exp $
  *
  *-------------------------------------------------------------------------
  */
 #ifndef STRAT_H
 #define STRAT_H
 
-#include <access/skey.h>
+#include "access/skey.h"
 
 typedef uint16 StrategyNumber;
 
index 2551278f12965f0017b5349eb4c36401b07f2f8d..49083cb01b32360a68a03611067d8d76d898628e 100644 (file)
@@ -6,7 +6,7 @@
  *
  * Copyright (c) 1994, Regents of the University of California
  *
- * $Id: transam.h,v 1.22 1999/06/10 14:17:12 vadim Exp $
+ * $Id: transam.h,v 1.22.2.1 1999/07/30 18:26:59 scrappy Exp $
  *
  *      NOTES
  *             Transaction System Version 101 now support proper oid
@@ -17,7 +17,7 @@
 #ifndef TRANSAM_H
 #define TRANSAM_H
 
-#include <storage/bufmgr.h>
+#include "storage/bufmgr.h"
 
 /* ----------------
  *             transaction system version id
index f338723d5f1557f28ebf31529bdeb19006e96996..96ae74bcf6debd8b867646e2ffd1b1fb26f86902 100644 (file)
@@ -6,16 +6,16 @@
  *
  * Copyright (c) 1994, Regents of the University of California
  *
- * $Id: tupdesc.h,v 1.22 1999/05/25 22:42:36 momjian Exp $
+ * $Id: tupdesc.h,v 1.22.2.1 1999/07/30 18:27:00 scrappy Exp $
  *
  *-------------------------------------------------------------------------
  */
 #ifndef TUPDESC_H
 #define TUPDESC_H
 
-#include <nodes/pg_list.h>
-#include <access/attnum.h>
-#include <catalog/pg_attribute.h>
+#include "access/attnum.h"
+#include "catalog/pg_attribute.h"
+#include "nodes/pg_list.h"
 
 
 typedef struct attrDefault
index 3f2d6e8d9624a10279f33eed0b89d971e1737201..7b4b9b99e676c37a38eff49846f41f5b3a3b1691 100644 (file)
@@ -6,13 +6,15 @@
  *
  * Copyright (c) 1994, Regents of the University of California
  *
- * $Id: tupmacs.h,v 1.10 1999/05/25 16:13:36 momjian Exp $
+ * $Id: tupmacs.h,v 1.10.2.1 1999/07/30 18:27:00 scrappy Exp $
  *
  *-------------------------------------------------------------------------
  */
 #ifndef TUPMACS_H
 #define TUPMACS_H
 
+#include "utils/memutils.h"
+
 /*
  * check to see if the ATT'th bit of an array of 8-bit bytes is set.
  */
index a855806c19333e460ee7c4b6982796448bae2b60..ac0e3b18dbe8b55c83c2cb293226a3b8cea01f4f 100644 (file)
@@ -6,15 +6,15 @@
  *
  * Copyright (c) 1994, Regents of the University of California
  *
- * $Id: xact.h,v 1.20 1999/02/13 23:21:00 momjian Exp $
+ * $Id: xact.h,v 1.20.2.1 1999/07/30 18:27:00 scrappy Exp $
  *
  *-------------------------------------------------------------------------
  */
 #ifndef XACT_H
 #define XACT_H
 
-#include <access/transam.h>
-#include <utils/nabstime.h>
+#include "access/transam.h"
+#include "utils/nabstime.h"
 
 /* ----------------
  *             transaction state structure
index 2e4cb77969bfb4fd163b70969b76103376a746cc..18e61fd1ea08dade53b1021ff70281880d22d6ea 100644 (file)
@@ -6,16 +6,16 @@
  *
  * Copyright (c) 1994, Regents of the University of California
  *
- * $Id: bootstrap.h,v 1.14 1999/02/13 23:21:00 momjian Exp $
+ * $Id: bootstrap.h,v 1.14.2.1 1999/07/30 18:27:02 scrappy Exp $
  *
  *-------------------------------------------------------------------------
  */
 #ifndef BOOTSTRAP_H
 #define BOOTSTRAP_H
 
-#include <access/funcindex.h>
-#include <access/itup.h>
-#include <utils/rel.h>
+#include "access/funcindex.h"
+#include "access/itup.h"
+#include "utils/rel.h"
 
 #define MAXATTR 40                             /* max. number of attributes in a relation */
 
index bd14eaa5310adca4e2a7241f04ecd39963f71290..6eacebdf67d83dd11701f8955e3cec8c0649fd32 100644 (file)
@@ -7,7 +7,7 @@
  *
  * Copyright (c) 1994, Regents of the University of California
  *
- * $Id: c.h,v 1.58 1999/07/01 19:47:25 momjian Exp $
+ * $Id: c.h,v 1.58.2.1 1999/07/30 18:26:57 scrappy Exp $
  *
  *-------------------------------------------------------------------------
  */
    on some platforms, and we only want our definitions used if stdlib.h doesn't
    have its own.  The same goes for stddef and stdarg if present.
 */
+
+#include "config.h"
+
+
+#include <stdio.h>
 #include <stdlib.h>
+#include <string.h>
 #ifdef STDC_HEADERS
 #include <stddef.h>
 #include <stdarg.h>
@@ -103,12 +109,6 @@ typedef bool *BoolPtr;
  * ----------------------------------------------------------------
  */
 
-/*
- * We used to define const, signed, volatile, and inline as empty
- * if __STDC__ wasn't defined.  Now we let configure test whether
- * those keywords work; config.h defines them as empty if not.
- */
-
 /*
  * CppAsString
  *             Convert the argument to a string, using the C preprocessor.
@@ -759,7 +759,7 @@ extern char *vararg_format(const char *fmt,...);
 #endif  /* hpux */
 #endif
 
-#if defined(sun) && defined(sparc) && !defined(__SVR4)
+#if defined(sun) && defined(__sparc__) && !defined(__SVR4)
 #define memmove(d, s, l)               bcopy(s, d, l)
 #include <unistd.h>
 #include <varargs.h>
@@ -791,12 +791,14 @@ extern char *vararg_format(const char *fmt,...);
 
 #ifndef HAVE_SNPRINTF
 extern int     snprintf(char *str, size_t count, const char *fmt,...);
-
 #endif
 
 #ifndef HAVE_VSNPRINTF
 extern int     vsnprintf(char *str, size_t count, const char *fmt, va_list args);
+#endif
 
+#ifndef HAVE_MEMMOVE
+#include <regex/utils.h>
 #endif
 
 /* ----------------