diff options
Diffstat (limited to 'src/backend/utils')
-rw-r--r-- | src/backend/utils/Gen_fmgrtab.sh.in | 8 | ||||
-rw-r--r-- | src/backend/utils/adt/acl.c | 4 | ||||
-rw-r--r-- | src/backend/utils/adt/chunk.c | 4 | ||||
-rw-r--r-- | src/backend/utils/adt/filename.c | 4 | ||||
-rw-r--r-- | src/backend/utils/adt/inet_net_ntop.c | 6 | ||||
-rw-r--r-- | src/backend/utils/adt/inet_net_pton.c | 6 | ||||
-rw-r--r-- | src/backend/utils/adt/mac.c | 6 | ||||
-rw-r--r-- | src/backend/utils/adt/nabstime.c | 4 | ||||
-rw-r--r-- | src/backend/utils/adt/network.c | 6 | ||||
-rw-r--r-- | src/backend/utils/adt/regexp.c | 4 | ||||
-rw-r--r-- | src/backend/utils/cache/inval.c | 4 | ||||
-rw-r--r-- | src/backend/utils/hash/dynahash.c | 16 | ||||
-rw-r--r-- | src/backend/utils/init/globals.c | 4 | ||||
-rw-r--r-- | src/backend/utils/init/postinit.c | 10 | ||||
-rw-r--r-- | src/backend/utils/mb/utftest.c | 10 | ||||
-rw-r--r-- | src/backend/utils/mb/wstrcmp.c | 2 | ||||
-rw-r--r-- | src/backend/utils/mb/wstrncmp.c | 2 | ||||
-rw-r--r-- | src/backend/utils/misc/superuser.c | 8 |
18 files changed, 54 insertions, 54 deletions
diff --git a/src/backend/utils/Gen_fmgrtab.sh.in b/src/backend/utils/Gen_fmgrtab.sh.in index 4537f91d48f..ec60faa83d9 100644 --- a/src/backend/utils/Gen_fmgrtab.sh.in +++ b/src/backend/utils/Gen_fmgrtab.sh.in @@ -8,7 +8,7 @@ # # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/backend/utils/Attic/Gen_fmgrtab.sh.in,v 1.15 1999/04/09 22:35:41 tgl Exp $ +# $Header: /cvsroot/pgsql/src/backend/utils/Attic/Gen_fmgrtab.sh.in,v 1.16 1999/07/15 23:03:25 momjian Exp $ # # NOTES # Passes any -D options on to cpp prior to generating the list @@ -83,7 +83,7 @@ cat > $HFILE <<FuNkYfMgRsTuFf * * Copyright (c) 1994, Regents of the University of California * - * $Id: Gen_fmgrtab.sh.in,v 1.15 1999/04/09 22:35:41 tgl Exp $ + * $Id: Gen_fmgrtab.sh.in,v 1.16 1999/07/15 23:03:25 momjian Exp $ * * NOTES * ****************************** @@ -206,7 +206,7 @@ cat > $TABCFILE <<FuNkYfMgRtAbStUfF * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/utils/Attic/Gen_fmgrtab.sh.in,v 1.15 1999/04/09 22:35:41 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/utils/Attic/Gen_fmgrtab.sh.in,v 1.16 1999/07/15 23:03:25 momjian Exp $ * * NOTES * @@ -225,7 +225,7 @@ cat > $TABCFILE <<FuNkYfMgRtAbStUfF */ #include <string.h> -#include <postgres.h> +#include "postgres.h" #include "utils/fmgrtab.h" FuNkYfMgRtAbStUfF diff --git a/src/backend/utils/adt/acl.c b/src/backend/utils/adt/acl.c index b456a5f6c70..b1a5d8e1a03 100644 --- a/src/backend/utils/adt/acl.c +++ b/src/backend/utils/adt/acl.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/utils/adt/acl.c,v 1.37 1999/07/09 03:28:51 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/utils/adt/acl.c,v 1.38 1999/07/15 23:03:25 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -15,7 +15,7 @@ #include <string.h> #include "postgres.h" -#include <utils/memutils.h> +#include "utils/memutils.h" #include "utils/acl.h" #include "utils/syscache.h" #include "catalog/catalog.h" diff --git a/src/backend/utils/adt/chunk.c b/src/backend/utils/adt/chunk.c index a9a49fe940e..815a263dda5 100644 --- a/src/backend/utils/adt/chunk.c +++ b/src/backend/utils/adt/chunk.c @@ -6,7 +6,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/utils/adt/Attic/chunk.c,v 1.20 1999/05/25 16:11:55 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/utils/adt/Attic/chunk.c,v 1.21 1999/07/15 23:03:26 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -25,7 +25,7 @@ #include "utils/memutils.h" #ifndef HAVE_MEMMOVE -#include <regex/utils.h> +#include "regex/utils.h" #else #include <string.h> #endif diff --git a/src/backend/utils/adt/filename.c b/src/backend/utils/adt/filename.c index 0b2c0dd250d..f8c049d257f 100644 --- a/src/backend/utils/adt/filename.c +++ b/src/backend/utils/adt/filename.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/utils/adt/Attic/filename.c,v 1.19 1999/07/15 15:20:15 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/utils/adt/Attic/filename.c,v 1.20 1999/07/15 23:03:26 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -19,7 +19,7 @@ #include <sys/param.h> #include "postgres.h" -#include <miscadmin.h> +#include "miscadmin.h" #include "utils/builtins.h" /* where function declarations go */ char * diff --git a/src/backend/utils/adt/inet_net_ntop.c b/src/backend/utils/adt/inet_net_ntop.c index 11a0cb9363a..45f8978a1ed 100644 --- a/src/backend/utils/adt/inet_net_ntop.c +++ b/src/backend/utils/adt/inet_net_ntop.c @@ -16,7 +16,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static const char rcsid[] = "$Id: inet_net_ntop.c,v 1.6 1999/05/25 16:12:04 momjian Exp $"; +static const char rcsid[] = "$Id: inet_net_ntop.c,v 1.7 1999/07/15 23:03:26 momjian Exp $"; #endif @@ -30,8 +30,8 @@ static const char rcsid[] = "$Id: inet_net_ntop.c,v 1.6 1999/05/25 16:12:04 momj #include <string.h> #include <stdlib.h> -#include <postgres.h> -#include <utils/builtins.h> +#include "postgres.h" +#include "utils/builtins.h" #ifdef SPRINTF_CHAR #define SPRINTF(x) strlen(sprintf/**/x) diff --git a/src/backend/utils/adt/inet_net_pton.c b/src/backend/utils/adt/inet_net_pton.c index bcc9ff681a2..f5687f25330 100644 --- a/src/backend/utils/adt/inet_net_pton.c +++ b/src/backend/utils/adt/inet_net_pton.c @@ -16,7 +16,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static const char rcsid[] = "$Id: inet_net_pton.c,v 1.8 1999/05/25 16:12:05 momjian Exp $"; +static const char rcsid[] = "$Id: inet_net_pton.c,v 1.9 1999/07/15 23:03:27 momjian Exp $"; #endif @@ -32,8 +32,8 @@ static const char rcsid[] = "$Id: inet_net_pton.c,v 1.8 1999/05/25 16:12:05 momj #include <string.h> #include <stdlib.h> -#include <postgres.h> -#include <utils/builtins.h> +#include "postgres.h" +#include "utils/builtins.h" #ifdef SPRINTF_CHAR #define SPRINTF(x) strlen(sprintf/**/x) diff --git a/src/backend/utils/adt/mac.c b/src/backend/utils/adt/mac.c index ed2a86a954f..631fa75e699 100644 --- a/src/backend/utils/adt/mac.c +++ b/src/backend/utils/adt/mac.c @@ -1,14 +1,14 @@ /* * PostgreSQL type definitions for MAC addresses. * - * $Id: mac.c,v 1.11 1999/07/15 22:39:59 momjian Exp $ + * $Id: mac.c,v 1.12 1999/07/15 23:03:27 momjian Exp $ */ #include <stdio.h> #include <string.h> -#include <postgres.h> -#include <utils/builtins.h> +#include "postgres.h" +#include "utils/builtins.h" manufacturer manufacturers[] = { {0x00, 0x00, 0x0C, "Cisco"}, diff --git a/src/backend/utils/adt/nabstime.c b/src/backend/utils/adt/nabstime.c index 304e91d2060..a50c2dc82ff 100644 --- a/src/backend/utils/adt/nabstime.c +++ b/src/backend/utils/adt/nabstime.c @@ -4,7 +4,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: nabstime.c,v 1.57 1999/07/15 15:20:18 momjian Exp $ + * $Id: nabstime.c,v 1.58 1999/07/15 23:03:27 momjian Exp $ * */ #include <stdio.h> @@ -13,7 +13,7 @@ #include <sys/types.h> #include "postgres.h" -#include <miscadmin.h> +#include "miscadmin.h" #ifdef HAVE_FLOAT_H #include <float.h> #endif diff --git a/src/backend/utils/adt/network.c b/src/backend/utils/adt/network.c index 70ecd3d5c28..889fc260c86 100644 --- a/src/backend/utils/adt/network.c +++ b/src/backend/utils/adt/network.c @@ -3,7 +3,7 @@ * is for IP V4 CIDR notation, but prepared for V6: just * add the necessary bits where the comments indicate. * - * $Id: network.c,v 1.13 1999/07/15 22:40:00 momjian Exp $ + * $Id: network.c,v 1.14 1999/07/15 23:03:27 momjian Exp $ * Jon Postel RIP 16 Oct 1998 */ @@ -17,8 +17,8 @@ #include <netinet/in.h> #include <arpa/inet.h> -#include <postgres.h> -#include <utils/builtins.h> +#include "postgres.h" +#include "utils/builtins.h" static int v4bitncmp(unsigned int a1, unsigned int a2, int bits); diff --git a/src/backend/utils/adt/regexp.c b/src/backend/utils/adt/regexp.c index c53b5350119..9a30652a5ee 100644 --- a/src/backend/utils/adt/regexp.c +++ b/src/backend/utils/adt/regexp.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/utils/adt/regexp.c,v 1.24 1999/07/15 15:20:19 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/utils/adt/regexp.c,v 1.25 1999/07/15 23:03:27 momjian Exp $ * * Alistair Crooks added the code for the regex caching * agc - cached the regular expressions used - there's a good chance @@ -30,7 +30,7 @@ #include <string.h> #include "postgres.h" /* postgres system include file */ -#include <regex/regex.h> +#include "regex/regex.h" #include "utils/builtins.h" /* where the function declarations go */ diff --git a/src/backend/utils/cache/inval.c b/src/backend/utils/cache/inval.c index a356bb8cdd0..39383494341 100644 --- a/src/backend/utils/cache/inval.c +++ b/src/backend/utils/cache/inval.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/utils/cache/inval.c,v 1.24 1999/07/15 22:40:03 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/utils/cache/inval.c,v 1.25 1999/07/15 23:03:27 momjian Exp $ * * Note - this code is real crufty... * @@ -15,7 +15,7 @@ */ #include "postgres.h" -#include <miscadmin.h> +#include "miscadmin.h" #include "catalog/catalog.h" #include "catalog/heap.h" diff --git a/src/backend/utils/hash/dynahash.c b/src/backend/utils/hash/dynahash.c index 5b00ed9b0f4..076799089dd 100644 --- a/src/backend/utils/hash/dynahash.c +++ b/src/backend/utils/hash/dynahash.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/utils/hash/dynahash.c,v 1.24 1999/07/15 15:20:31 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/utils/hash/dynahash.c,v 1.25 1999/07/15 23:03:29 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -39,15 +39,15 @@ * Modified by sullivan@postgres.berkeley.edu April 1990 * changed ctl structure for shared memory */ -#include <stdio.h> -#include <sys/types.h> -#include <string.h> -#include "postgres.h" -#include "utils/dynahash.h" -#include "utils/hsearch.h" +#include <stdio.h> +#include <sys/types.h> +#include <string.h> +#include "postgres.h" +#include "utils/dynahash.h" +#include "utils/hsearch.h" #ifndef FRONTEND #endif /* !FRONTEND */ -#include "utils/memutils.h" +#include "utils/memutils.h" /* * Fast MOD arithmetic, assuming that y is a power of 2 ! diff --git a/src/backend/utils/init/globals.c b/src/backend/utils/init/globals.c index 97dee13053e..8e6d2b1370a 100644 --- a/src/backend/utils/init/globals.c +++ b/src/backend/utils/init/globals.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/utils/init/globals.c,v 1.32 1999/07/15 22:40:08 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/utils/init/globals.c,v 1.33 1999/07/15 23:03:30 momjian Exp $ * * NOTES * Globals used all over the place should be declared here and not @@ -26,7 +26,7 @@ #include "postgres.h" #include "miscadmin.h" /* where the declarations go */ -#include <storage/backendid.h> +#include "storage/backendid.h" #include "storage/lmgr.h" #include "libpq/pqcomm.h" #include "catalog/catname.h" diff --git a/src/backend/utils/init/postinit.c b/src/backend/utils/init/postinit.c index 92532c9bad1..0474539462e 100644 --- a/src/backend/utils/init/postinit.c +++ b/src/backend/utils/init/postinit.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/utils/init/postinit.c,v 1.42 1999/07/15 22:40:09 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/utils/init/postinit.c,v 1.43 1999/07/15 23:03:30 momjian Exp $ * * NOTES * InitPostgres() is the function called from PostgresMain @@ -37,10 +37,10 @@ #include "postgres.h" #include "version.h" -#include <storage/backendid.h> -#include <storage/smgr.h> -#include <storage/proc.h> -#include <utils/relcache.h> +#include "storage/backendid.h" +#include "storage/smgr.h" +#include "storage/proc.h" +#include "utils/relcache.h" #include "access/heapam.h" #include "utils/syscache.h" diff --git a/src/backend/utils/mb/utftest.c b/src/backend/utils/mb/utftest.c index c83e54c8ec8..e6556afe274 100644 --- a/src/backend/utils/mb/utftest.c +++ b/src/backend/utils/mb/utftest.c @@ -1,12 +1,12 @@ /* * testing of utf2wchar() - * $Id: utftest.c,v 1.2 1998/09/01 04:33:23 momjian Exp $ + * $Id: utftest.c,v 1.3 1999/07/15 23:03:31 momjian Exp $ */ -#include <regex/regex.h> -#include <regex/utils.h> -#include <regex/regex2.h> +#include "regex/regex.h" +#include "regex/utils.h" +#include "regex/regex2.h" -#include <regex/pg_wchar.h> +#include "regex/pg_wchar.h" main() { diff --git a/src/backend/utils/mb/wstrcmp.c b/src/backend/utils/mb/wstrcmp.c index 3efdcc6f396..4b6a16b7d14 100644 --- a/src/backend/utils/mb/wstrcmp.c +++ b/src/backend/utils/mb/wstrcmp.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. */ -#include <mb/pg_wchar.h> +#include "mb/pg_wchar.h" int pg_char_and_wchar_strcmp(s1, s2) diff --git a/src/backend/utils/mb/wstrncmp.c b/src/backend/utils/mb/wstrncmp.c index c7ccf1b4cb7..050a46191b4 100644 --- a/src/backend/utils/mb/wstrncmp.c +++ b/src/backend/utils/mb/wstrncmp.c @@ -33,7 +33,7 @@ * SUCH DAMAGE. */ -#include <mb/pg_wchar.h> +#include "mb/pg_wchar.h" int pg_wchar_strncmp(s1, s2, n) diff --git a/src/backend/utils/misc/superuser.c b/src/backend/utils/misc/superuser.c index f59ac973927..b1dab2d4961 100644 --- a/src/backend/utils/misc/superuser.c +++ b/src/backend/utils/misc/superuser.c @@ -8,16 +8,16 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/utils/misc/superuser.c,v 1.8 1999/02/13 23:20:06 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/utils/misc/superuser.c,v 1.9 1999/07/15 23:03:32 momjian Exp $ * * DESCRIPTION * See superuser(). *------------------------------------------------------------------------- */ -#include <postgres.h> -#include <utils/syscache.h> -#include <catalog/pg_shadow.h> +#include "postgres.h" +#include "utils/syscache.h" +#include "catalog/pg_shadow.h" bool superuser(void) |