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 /CutPaste.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 'CutPaste.c')
-rw-r--r-- | CutPaste.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -30,6 +30,10 @@ from The Open Group. * Author: Davor Matic, MIT X Consortium */ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + #include <X11/IntrinsicP.h> #include <X11/StringDefs.h> #include <X11/Xatom.h> |