diff options
author | Adam Jackson <ajax@redhat.com> | 2018-02-01 14:50:32 -0500 |
---|---|---|
committer | Adam Jackson <ajax@redhat.com> | 2018-02-01 14:50:32 -0500 |
commit | c9120fbdcec3bd8b52d97dd8a91e6e02b36c374e (patch) | |
tree | 49fcdc562b3b5d0f1d21d769ded584e3a1c61581 /include | |
parent | 05b1963945ff8a2989c97ba1bbbee507b6328b2d (diff) |
xproto: Stop "computing" a value for FUNCPROTO
This macro is apparently an imake-ism for how much C89 you support.
Seeing as it's 2018 the answer is "all of it", and if that's not
actually true for your platform you need a better compiler.
Signed-off-by: Adam Jackson <ajax@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/X11/Xfuncproto.h.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/X11/Xfuncproto.h.in b/include/X11/Xfuncproto.h.in index 3259366..89bc96f 100644 --- a/include/X11/Xfuncproto.h.in +++ b/include/X11/Xfuncproto.h.in @@ -53,7 +53,7 @@ in this Software without prior written authorization from The Open Group. #define NARROWPROTO #endif #ifndef FUNCPROTO -#undef FUNCPROTO +#define FUNCPROTO 15 #endif #ifndef NeedWidePrototypes |