If HAVE_FCNTL_H include fcntl.h.
authorDan Nicolaescu <dann@ics.uci.edu>
Sun, 13 Feb 2005 00:21:11 +0000 (00:21 +0000)
committerDan Nicolaescu <dann@ics.uci.edu>
Sun, 13 Feb 2005 00:21:11 +0000 (00:21 +0000)
src/ChangeLog
src/keyboard.c

index 280d430..c6ab698 100644 (file)
@@ -1,3 +1,7 @@
+2005-02-12  Dan Nicolaescu  <dann@ics.uci.edu>
+
+       * keyboard.c: If HAVE_FCNTL_H include fcntl.h.
+
 2005-02-12  Kim F. Storm  <storm@cua.dk>
 
        * xdisp.c (expose_window): Don't fix overlaps for mode lines.
index 3b7d2aa..996aad1 100644 (file)
@@ -65,6 +65,10 @@ Boston, MA 02111-1307, USA.  */
 #include <unistd.h>
 #endif
 
+#ifdef HAVE_FCNTL_H
+#include <fcntl.h>
+#endif
+
 /* This is to get the definitions of the XK_ symbols.  */
 #ifdef HAVE_X_WINDOWS
 #include "xterm.h"