summaryrefslogtreecommitdiff
path: root/src/include/utils/dt.h
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>1998-01-24 22:50:57 +0000
committerBruce Momjian <bruce@momjian.us>1998-01-24 22:50:57 +0000
commit72295139434d26c6da565faee2f50cb6fa900d43 (patch)
treefe3868a4a1f475cc4d7adbc7ab069052b5d67b20 /src/include/utils/dt.h
parent27317a0d7c267ef356f7620f00769363007fcb3f (diff)
downloadpostgresql-72295139434d26c6da565faee2f50cb6fa900d43.tar.gz
Fix prototypes so they don't look like function definitions.
Diffstat (limited to 'src/include/utils/dt.h')
-rw-r--r--src/include/utils/dt.h14
1 files changed, 5 insertions, 9 deletions
diff --git a/src/include/utils/dt.h b/src/include/utils/dt.h
index c74a63cd27..d2afbe5034 100644
--- a/src/include/utils/dt.h
+++ b/src/include/utils/dt.h
@@ -8,7 +8,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: dt.h,v 1.24 1997/12/17 23:19:28 thomas Exp $
+ * $Id: dt.h,v 1.25 1998/01/24 22:50:39 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -320,19 +320,15 @@ extern int date2j(int year, int month, int day);
extern double time2t(const int hour, const int min, const double sec);
-extern int
-ParseDateTime(char *timestr, char *lowstr,
+extern int ParseDateTime(char *timestr, char *lowstr,
char *field[], int ftype[], int maxfields, int *numfields);
-extern int
-DecodeDateTime(char *field[], int ftype[],
+extern int DecodeDateTime(char *field[], int ftype[],
int nf, int *dtype, struct tm * tm, double *fsec, int *tzp);
-extern int
-DecodeTimeOnly(char *field[], int ftype[], int nf,
+extern int DecodeTimeOnly(char *field[], int ftype[], int nf,
int *dtype, struct tm * tm, double *fsec);
-extern int
-DecodeDateDelta(char *field[], int ftype[],
+extern int DecodeDateDelta(char *field[], int ftype[],
int nf, int *dtype, struct tm * tm, double *fsec);
extern int EncodeDateOnly(struct tm * tm, int style, char *str);