summary refs log tree commit diff
path: root/xutil.c
diff options
context:
space:
mode:
authorokan <okan>2015-01-19 14:54:16 +0000
committerokan <okan>2015-01-19 14:54:16 +0000
commit7936b9b2a7c7c3cc06d3fb60c22ed535b610cd63 (patch)
tree9bb4f55aee479f2aa360ccc1dc07946b17ad09c5 /xutil.c
parentc412f040df05c7221537a598786e0cea4b35167f (diff)
downloadcwm-7936b9b2a7c7c3cc06d3fb60c22ed535b610cd63.tar.gz
cwm-7936b9b2a7c7c3cc06d3fb60c22ed535b610cd63.tar.xz
cwm-7936b9b2a7c7c3cc06d3fb60c22ed535b610cd63.zip
Switch to limits.h; replace MAXPATHLEN and MAXHOSTNAMELEN with PATH_MAX
and HOST_NAME_MAX+1, respectively.

ok doug@
Diffstat (limited to 'xutil.c')
-rw-r--r--xutil.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/xutil.c b/xutil.c
index 70186f8..edc1426 100644
--- a/xutil.c
+++ b/xutil.c
@@ -18,11 +18,12 @@
  * $OpenBSD$
  */
 
-#include <sys/param.h>
+#include <sys/types.h>
 #include <sys/queue.h>
 
 #include <err.h>
 #include <errno.h>
+#include <limits.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>