diff options
author | Bruce Momjian <bruce@momjian.us> | 2004-09-10 02:49:37 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2004-09-10 02:49:37 +0000 |
commit | 8975dcfcbb5a76fca0f570e65cb8399f5d923d50 (patch) | |
tree | 56beb44912b92a3ca4d21dac039e2dce4a92ea66 /src | |
parent | b493b390048a9d7a66021b5f2fb71f049becc9e4 (diff) | |
download | postgresql-8975dcfcbb5a76fca0f570e65cb8399f5d923d50.tar.gz postgresql-8975dcfcbb5a76fca0f570e65cb8399f5d923d50.zip |
Clean up Cygwin test.
Diffstat (limited to 'src')
-rw-r--r-- | src/port/dirmod.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/port/dirmod.c b/src/port/dirmod.c index cda2bb1a08d..89d2d39a26b 100644 --- a/src/port/dirmod.c +++ b/src/port/dirmod.c @@ -10,7 +10,7 @@ * Win32 (NT, Win2k, XP). replace() doesn't work on Win95/98/Me. * * IDENTIFICATION - * $PostgreSQL: pgsql/src/port/dirmod.c,v 1.23 2004/09/09 00:59:49 momjian Exp $ + * $PostgreSQL: pgsql/src/port/dirmod.c,v 1.24 2004/09/10 02:49:37 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -36,10 +36,9 @@ #undef rename #undef unlink -#ifdef __WIN32__ +#ifndef __CYGWIN__ #include <winioctl.h> #else -/* __CYGWIN__ */ #include <windows.h> #include <w32api/winioctl.h> #endif |