The remaining files ...

This commit is contained in:
Michael Meskes 2003-06-25 17:55:50 +00:00
parent 8d8b9401b8
commit 6f30d5665c
6 changed files with 15 additions and 16 deletions

View File

@ -6,8 +6,8 @@
#include <stdio.h>
#include <string.h>
#include "dt.h"
#include "extern.h"
#include "dt.h"
#include "pgtypes_error.h"
#include "pgtypes_date.h"

View File

@ -15,18 +15,6 @@ typedef double fsec_t;
#define JROUND(j) (rint(((double) (j))*TIME_PREC_INV)/TIME_PREC_INV)
#endif
#ifndef bool
#define bool char
#endif /* ndef bool */
#ifndef FALSE
#define FALSE 0
#endif /* FALSE */
#ifndef TRUE
#define TRUE 1
#endif /* TRUE */
#define USE_POSTGRES_DATES 0
#define USE_ISO_DATES 1
#define USE_SQL_DATES 2

View File

@ -7,8 +7,8 @@
#include <string.h>
#include <math.h>
#include "dt.h"
#include "extern.h"
#include "dt.h"
static int day_tab[2][13] = {
{31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31, 0},

View File

@ -35,6 +35,17 @@ int pgtypes_fmt_replace(union un_fmt_replace, int, char**, int*);
char *pgtypes_alloc(long);
char *pgtypes_strdup(char *);
#ifndef bool
#define bool char
#endif /* ndef bool */
#ifndef FALSE
#define FALSE 0
#endif /* FALSE */
#ifndef TRUE
#define TRUE 1
#endif /* TRUE */
#endif /* __PGTYPES_COMMON_H__ */

View File

@ -10,8 +10,8 @@
#error -ffast-math is known to break this code
#endif
#include "dt.h"
#include "extern.h"
#include "dt.h"
#include "pgtypes_error.h"
#include "pgtypes_interval.h"
#include "datetime.h"

View File

@ -9,8 +9,8 @@
#error -ffast-math is known to break this code
#endif
#include "dt.h"
#include "extern.h"
#include "dt.h"
#include "pgtypes_timestamp.h"
#include "pgtypes_date.h"
#include "datetime.h"