Update of /cvsroot/pypgsql/pypgsql
In directory usw-pr-cvs1:/tmp/cvs-serv16438
Modified Files:
libpqmodule.h
Log Message:
01OCT2002 gh Reflect change from windows/ to ports/ and thus remove
special-casing for win32 and Cygwin.
Index: libpqmodule.h
===================================================================
RCS file: /cvsroot/pypgsql/pypgsql/libpqmodule.h,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** libpqmodule.h 4 Feb 2002 02:09:52 -0000 1.8
--- libpqmodule.h 2 Oct 2002 04:06:32 -0000 1.9
***************
*** 29,32 ****
--- 29,33 ----
#include <libpq-fe.h>
#include <libpq/libpq-fs.h>
+ #include "port/port.h"
#include "pg_types.h"
#include "pgboolean.h"
***************
*** 107,120 ****
void *PyMem_Strdup(void *);
-
- /***********************************************************************\
- | Declare these here in case we're compiling on a MS Windows system. |
- \***********************************************************************/
-
- #if defined(MS_WIN32) || defined(__CYGWIN__)
- char *strtok_r(char *, const char *, char **);
- LONG_LONG strtoll(const char *, char **, int);
- unsigned LONG_LONG strtoull(const char *, char **, int);
- #endif
#ifdef __cplusplus
--- 108,111 ----
|