aboutsummaryrefslogtreecommitdiffstats
path: root/parse.y
diff options
context:
space:
mode:
authorokan2015-01-19 14:54:16 +0000
committerokan2015-01-19 14:54:16 +0000
commit69c7524909cec83591a6cea56722753922d9999a (patch)
tree72877cdf61c2c8dd2e5e35e0909cb9058c225ca0 /parse.y
parent526655bfc9928c3519a08eba2fbeb5806ae387df (diff)
downloadcwm-69c7524909cec83591a6cea56722753922d9999a.tar.gz
Switch to limits.h; replace MAXPATHLEN and MAXHOSTNAMELEN with PATH_MAX
and HOST_NAME_MAX+1, respectively. ok doug@
Diffstat (limited to 'parse.y')
-rw-r--r--parse.y4
1 files changed, 2 insertions, 2 deletions
diff --git a/parse.y b/parse.y
index 2ee5727..5aa07d0 100644
--- a/parse.y
+++ b/parse.y
@@ -1,4 +1,4 @@
-/* $OpenBSD: parse.y,v 1.60 2015/01/17 02:05:03 okan Exp $ */
+/* $OpenBSD: parse.y,v 1.61 2015/01/19 14:54:16 okan Exp $ */
/*
* Copyright (c) 2002, 2003, 2004 Henning Brauer <henning@openbsd.org>
@@ -21,7 +21,7 @@
%{
-#include <sys/param.h>
+#include <sys/types.h>
#include <sys/queue.h>
#include <ctype.h>