]> git.eshelyaron.com Git - emacs.git/commitdiff
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 280d430dbd89ccb9df2b563bdb2efc17ee50d893..c6ab6985ed0dde2bfcd378d91e8f95da50541b42 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 3b7d2aac98180c448f2fcb2f1b31d497a897e2b6..996aad15b3082e174c86284fecc0931b336c329e 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"