diff options
author | Daniel Stone <daniel@fooishbar.org> | 2010-07-12 10:37:49 +0100 |
---|---|---|
committer | Daniel Stone <daniel@fooishbar.org> | 2010-07-12 10:37:49 +0100 |
commit | 446d226f85433aeb45834b65f966397ad6fbb17f (patch) | |
tree | 87397844616a9ef303a62960f41661834c590566 /parseutils.c | |
parent | 61b3d4b024d8146cb0e7659aa958045ceb72c482 (diff) |
limits.h is mandated by C89, no need to check for it
Alan Coopersmith pointed out that C89 mandates limits.h, so for once in
X's life, checking for a system header is just being unnecessarily
paranoid.
Signed-off-by: Daniel Stone <daniel@fooishbar.org>
Diffstat (limited to 'parseutils.c')
-rw-r--r-- | parseutils.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/parseutils.c b/parseutils.c index 3242965..4aa859d 100644 --- a/parseutils.c +++ b/parseutils.c @@ -30,9 +30,7 @@ #include <X11/keysym.h> #include <X11/extensions/XKBgeom.h> #include <X11/Xalloca.h> -#ifdef HAVE_LIMITS_H #include <limits.h> -#endif #include <stdlib.h> XkbFile *rtrnValue; |