aboutsummaryrefslogtreecommitdiffstats
path: root/src/keyboard.c
diff options
context:
space:
mode:
authorDan Nicolaescu2005-02-13 00:21:11 +0000
committerDan Nicolaescu2005-02-13 00:21:11 +0000
commite31d908ff2e4d60fe28c3f000cb00e90b525ea48 (patch)
tree5684689a4e00b190c91ded20677f2e077861af27 /src/keyboard.c
parent83e2a07aa00911c775f6ed07d3de12f2bec666d8 (diff)
downloademacs-e31d908ff2e4d60fe28c3f000cb00e90b525ea48.tar.gz
emacs-e31d908ff2e4d60fe28c3f000cb00e90b525ea48.zip
If HAVE_FCNTL_H include fcntl.h.
Diffstat (limited to 'src/keyboard.c')
-rw-r--r--src/keyboard.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/keyboard.c b/src/keyboard.c
index 3b7d2aac981..996aad15b30 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -65,6 +65,10 @@ Boston, MA 02111-1307, USA. */
65#include <unistd.h> 65#include <unistd.h>
66#endif 66#endif
67 67
68#ifdef HAVE_FCNTL_H
69#include <fcntl.h>
70#endif
71
68/* This is to get the definitions of the XK_ symbols. */ 72/* This is to get the definitions of the XK_ symbols. */
69#ifdef HAVE_X_WINDOWS 73#ifdef HAVE_X_WINDOWS
70#include "xterm.h" 74#include "xterm.h"