1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-04 19:10:37 -08:00

If HAVE_FCNTL_H include fcntl.h.

This commit is contained in:
Dan Nicolaescu 2005-02-13 00:21:11 +00:00
parent 83e2a07aa0
commit e31d908ff2
2 changed files with 8 additions and 0 deletions

View 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.

View 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"