The remaining files ...

WIN32_DEV
Michael Meskes 23 years ago
parent 8d8b9401b8
commit 6f30d5665c
  1. 2
      src/interfaces/ecpg/pgtypeslib/datetime.c
  2. 12
      src/interfaces/ecpg/pgtypeslib/dt.h
  3. 2
      src/interfaces/ecpg/pgtypeslib/dt_common.c
  4. 11
      src/interfaces/ecpg/pgtypeslib/extern.h
  5. 2
      src/interfaces/ecpg/pgtypeslib/interval.c
  6. 2
      src/interfaces/ecpg/pgtypeslib/timestamp.c

@ -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"

@ -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

@ -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},

@ -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__ */

@ -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"

@ -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"

Loading…
Cancel
Save