1
0
mirror of https://github.com/postgres/postgres.git synced 2025-12-22 17:42:17 +03:00

At this rate, maybe next year sometime I'll get this done...

Goals: reduce the difficulty of porting from platform to platform,
       release to release, but moving as much as possible into config.h
This commit is contained in:
Marc G. Fournier
1996-08-27 07:32:33 +00:00
parent e733befeed
commit 321b8c80fd
5 changed files with 25 additions and 12 deletions

View File

@@ -7,10 +7,12 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/adt/Attic/datetimes.c,v 1.2 1996/07/19 07:19:56 scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/adt/Attic/datetimes.c,v 1.3 1996/08/27 07:32:30 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
#include "config.h"
#include <stdio.h> /* for sprintf() */
#include <string.h>
#include "postgres.h"
@@ -58,13 +60,13 @@ date_in(char *datestr)
DateADT *date = (DateADT*)&result;
#if 0
#ifdef USE_SHORT_YEAR
#define CHECK_DATE_LEN(datestr) (strlen(datestr) >= 8)
# ifdef USE_SHORT_YEAR
# define CHECK_DATE_LEN(datestr) (strlen(datestr) >= 8)
# else
# define CHECK_DATE_LEN(datestr) (strlen(datestr) == 10)
# endif /* USE_SHORT_YEAR */
#else
#define CHECK_DATE_LEN(datestr) (strlen(datestr) == 10)
#endif /* USE_SHORT_YEAR */
#else
#define CHECK_DATE_LEN(datestr) 1
# define CHECK_DATE_LEN(datestr) 1
#endif
#ifdef AMERICAN_STYLE