diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2023-02-05 18:01:35 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2023-02-05 18:01:35 -0800 |
commit | da8af2618143577c36ba7fe7656bb6e296616438 (patch) | |
tree | c4c116f4cfb57244283115e731af98914aed7c16 /atobm.c | |
parent | af15f44aabf3fccf096e04d73f4e6e2fd8ca3771 (diff) |
Ensure all *.c files include config.h before any other headers
Makes sure that any flags set in config.h that affect system headers
are applied equally across all source files.
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'atobm.c')
-rw-r--r-- | atobm.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -31,6 +31,10 @@ from The Open Group. * Author: Jim Fulton, MIT X Consortium */ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + #include <stdio.h> #include <ctype.h> #include <X11/Xos.h> |