summaryrefslogtreecommitdiff
path: root/parseutils.c
diff options
context:
space:
mode:
authorDaniel Stone <daniel@fooishbar.org>2010-07-12 10:37:49 +0100
committerDaniel Stone <daniel@fooishbar.org>2010-07-12 10:37:49 +0100
commit446d226f85433aeb45834b65f966397ad6fbb17f (patch)
tree87397844616a9ef303a62960f41661834c590566 /parseutils.c
parent61b3d4b024d8146cb0e7659aa958045ceb72c482 (diff)
downloadxorg-app-xkbcomp-446d226f85433aeb45834b65f966397ad6fbb17f.tar.gz
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.c2
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;