|
|
|
@ -6,7 +6,7 @@ |
|
|
|
|
* Portions Copyright (c) 1996-2004, PostgreSQL Global Development Group |
|
|
|
|
* Portions Copyright (c) 1994, Regents of the University of California |
|
|
|
|
* |
|
|
|
|
* $PostgreSQL: pgsql/src/include/port.h,v 1.57 2004/08/29 21:08:48 tgl Exp $ |
|
|
|
|
* $PostgreSQL: pgsql/src/include/port.h,v 1.58 2004/09/08 19:43:07 momjian Exp $ |
|
|
|
|
* |
|
|
|
|
*------------------------------------------------------------------------- |
|
|
|
|
*/ |
|
|
|
@ -180,6 +180,14 @@ extern int win32_open(const char *, int,...); |
|
|
|
|
#define pclose(a) _pclose(a) |
|
|
|
|
#endif |
|
|
|
|
|
|
|
|
|
/* Global variable holding time zone information. */ |
|
|
|
|
#if !defined(__CYGWIN__) |
|
|
|
|
#define TIMEZONE_GLOBAL timezone |
|
|
|
|
#else |
|
|
|
|
#define TIMEZONE_GLOBAL _timezone |
|
|
|
|
#define tzname _tzname /* should be in time.h? */ |
|
|
|
|
#endif |
|
|
|
|
|
|
|
|
|
extern int copydir(char *fromdir, char *todir); |
|
|
|
|
|
|
|
|
|
/* Missing rand functions */ |
|
|
|
|