From: Eli Zaretskii Date: Sat, 29 Jul 2006 10:18:48 +0000 (+0000) Subject: [WINDOWSNT]: Include fcntl.h, to fix last change. X-Git-Tag: emacs-pretest-22.0.90~1196 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=69666f776a28c398808c3a6c8004a5c831f84b7d;p=emacs.git [WINDOWSNT]: Include fcntl.h, to fix last change. --- diff --git a/src/ChangeLog b/src/ChangeLog index 029b7368be1..7b7c1747aad 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2006-07-29 Eli Zaretskii + + * alloc.c [WINDOWSNT]: Include fcntl.h, to fix last change. + 2006-07-28 Richard Stallman * xfaces.c (lookup_named_face, Fdisplay_supports_face_attributes_p): diff --git a/src/alloc.c b/src/alloc.c index 4c1a81e7c92..e5735e03fd9 100644 --- a/src/alloc.c +++ b/src/alloc.c @@ -78,6 +78,10 @@ extern POINTER_TYPE *sbrk (); #define O_WRONLY 1 #endif +#ifdef WINDOWSNT +#include +#endif + #ifdef DOUG_LEA_MALLOC #include