diff options
author | Marc G. Fournier <scrappy@hub.org> | 1999-08-02 05:25:27 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1999-08-02 05:25:27 +0000 |
commit | 9a8aeb23a19ee6833480d4c12719d9fd26ad8571 (patch) | |
tree | c97d5f26e89cc9d33c5be420a5e7688835644c77 /src/backend/utils/adt/date.c | |
parent | 62d146bdcd784280b573acd8af52488e66e212cf (diff) |
Another 'mega-commit' of back-patches ...
- integrating the #include file cleanup that Bruce recently did
- got the CPU change to adt/Makefile
- changing DOUBLEALIGN -> MAXALIGN
Diffstat (limited to 'src/backend/utils/adt/date.c')
-rw-r--r-- | src/backend/utils/adt/date.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/src/backend/utils/adt/date.c b/src/backend/utils/adt/date.c index 7ad18a067e4..71cb1f126c1 100644 --- a/src/backend/utils/adt/date.c +++ b/src/backend/utils/adt/date.c @@ -9,7 +9,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/utils/adt/date.c,v 1.32 1999/05/25 16:11:56 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/utils/adt/date.c,v 1.32.2.1 1999/08/02 05:24:51 scrappy Exp $ * * NOTES * This code is actually (almost) unused. @@ -24,23 +24,21 @@ *------------------------------------------------------------------------- */ #include <ctype.h> -#include <stdio.h> #include <time.h> #include <sys/time.h> #include <sys/types.h> -#include <string.h> #include "postgres.h" -#include "miscadmin.h" #ifdef HAVE_FLOAT_H #include <float.h> #endif #ifdef HAVE_LIMITS_H #include <limits.h> #endif + #include "access/xact.h" -#include "utils/builtins.h" /* where function declarations go */ -#include "utils/palloc.h" +#include "miscadmin.h" +#include "utils/builtins.h" #include "utils/dt.h" #define INVALID_RELTIME_STR "Undefined RelTime" |