diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2012-04-23 07:28:39 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2012-04-27 17:56:56 -0700 |
commit | 42f99a7a7b836f6f9704a7b1747eb722c93446ec (patch) | |
tree | 41bd122b690a709d0d075e703ccc77ded0153b7f /xmodmap.c | |
parent | f857804dd904c69de447f4117220db149d9239ec (diff) |
include config.h before stdio.h & other system headers
Ensures definitions like _GNU_SOURCE are visible when needed.
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
Diffstat (limited to 'xmodmap.c')
-rw-r--r-- | xmodmap.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -26,6 +26,10 @@ from The Open Group. */ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + #include <X11/Xos.h> #include <X11/Xlib.h> #include <stdio.h> |