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/dirmod.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/dirmod.c')
-rw-r--r-- | src/port/dirmod.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/port/dirmod.c b/src/port/dirmod.c index d2b51716ed3..1141138984d 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.26 2004/09/10 09:58:21 momjian Exp $ + * $PostgreSQL: pgsql/src/port/dirmod.c,v 1.27 2004/09/27 19:16:02 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -402,7 +402,6 @@ rmtree(char *path, bool rmtopdir) #include <stdio.h> #include <stdlib.h> #include <errno.h> -#include <windows.h> #define halt(str) \ do { \ |