1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-03 01:21:48 +03:00

Move undef of rename/unlink so system declarations are unmodified.

This commit is contained in:
Bruce Momjian 2004-09-10 09:53:08 +00:00
parent 3036b84b77
commit e2e1a0cc71

View File

@ -10,7 +10,7 @@
* Win32 (NT, Win2k, XP). replace() doesn't work on Win95/98/Me. * Win32 (NT, Win2k, XP). replace() doesn't work on Win95/98/Me.
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/port/dirmod.c,v 1.24 2004/09/10 02:49:37 momjian Exp $ * $PostgreSQL: pgsql/src/port/dirmod.c,v 1.25 2004/09/10 09:53:08 momjian Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
@ -21,6 +21,12 @@
#include "postgres_fe.h" #include "postgres_fe.h"
#endif #endif
/* Don't modify declarations in system headers */
#if defined(WIN32) || defined(__CYGWIN__)
#undef rename
#undef unlink
#endif
#include <unistd.h> #include <unistd.h>
#include <dirent.h> #include <dirent.h>
#include <sys/stat.h> #include <sys/stat.h>
@ -33,9 +39,6 @@
#include "miscadmin.h" #include "miscadmin.h"
#undef rename
#undef unlink
#ifndef __CYGWIN__ #ifndef __CYGWIN__
#include <winioctl.h> #include <winioctl.h>
#else #else