# HG changeset patch # User Dan Nicolaescu # Date 1108254071 0 # Node ID 8f9cab9fa5332b457f2124e0049d089bee64e732 # Parent 582f5e2fbf3aac6e986c0f900df2f3bd27469164 If HAVE_FCNTL_H include fcntl.h. diff -r 582f5e2fbf3a -r 8f9cab9fa533 src/ChangeLog --- a/src/ChangeLog Sat Feb 12 18:36:01 2005 +0000 +++ b/src/ChangeLog Sun Feb 13 00:21:11 2005 +0000 @@ -1,3 +1,7 @@ +2005-02-12 Dan Nicolaescu + + * keyboard.c: If HAVE_FCNTL_H include fcntl.h. + 2005-02-12 Kim F. Storm * xdisp.c (expose_window): Don't fix overlaps for mode lines. diff -r 582f5e2fbf3a -r 8f9cab9fa533 src/keyboard.c --- a/src/keyboard.c Sat Feb 12 18:36:01 2005 +0000 +++ b/src/keyboard.c Sun Feb 13 00:21:11 2005 +0000 @@ -65,6 +65,10 @@ #include #endif +#ifdef HAVE_FCNTL_H +#include +#endif + /* This is to get the definitions of the XK_ symbols. */ #ifdef HAVE_X_WINDOWS #include "xterm.h"