Skip to content
Snippets Groups Projects
Commit 4b97d51c authored by Bruce Momjian's avatar Bruce Momjian
Browse files

Fix compile if zic because it now doesn't use libpgport.

parent de5d3006
No related branches found
No related tags found
No related merge requests found
......@@ -9,7 +9,7 @@
* Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/timezone/pgtz.h,v 1.12 2005/06/15 00:34:11 momjian Exp $
* $PostgreSQL: pgsql/src/timezone/pgtz.h,v 1.13 2005/07/04 18:21:40 momjian Exp $
*
*-------------------------------------------------------------------------
*/
......@@ -18,6 +18,16 @@
#include "tzfile.h"
/*
* Prevent the use of /port functions because
* the are not included in this binary.
*/
#undef vsnprintf
#undef snprintf
#undef sprintf
#undef fprintf
#undef printf
extern char *pg_TZDIR(void);
#define BIGGEST(a, b) (((a) > (b)) ? (a) : (b))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment