diff options
author | Bruce Momjian <bruce@momjian.us> | 2004-09-27 19:16:03 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2004-09-27 19:16:03 +0000 |
commit | 32b24bfa975f962e5bc61886ccc78cf656b6295c (patch) | |
tree | a2b415c410dae85c4c3cb4c6f7ed262a98933a55 /src/port/crypt.c | |
parent | 7ceec70fc79a3c9bbda802b1464f05b791f28f2c (diff) | |
download | postgresql-32b24bfa975f962e5bc61886ccc78cf656b6295c.tar.gz postgresql-32b24bfa975f962e5bc61886ccc78cf656b6295c.zip |
Remove inclusion of windows.h now that it is included in c.h, per idea
from Peter.
Diffstat (limited to 'src/port/crypt.c')
-rw-r--r-- | src/port/crypt.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/port/crypt.c b/src/port/crypt.c index caa8d82142a..10f63e7d203 100644 --- a/src/port/crypt.c +++ b/src/port/crypt.c @@ -52,9 +52,7 @@ __RCSID("$NetBSD: crypt.c,v 1.18 2001/03/01 14:37:35 wiz Exp $"); #include <limits.h> #include <stdlib.h> -#ifdef WIN32 -#include <windows.h> -#else +#ifndef WIN32 #include <unistd.h> #endif |