aboutsummaryrefslogtreecommitdiffstats
path: root/util.c
diff options
context:
space:
mode:
authorokan2015-01-19 14:54:16 +0000
committerokan2015-01-19 14:54:16 +0000
commit69c7524909cec83591a6cea56722753922d9999a (patch)
tree72877cdf61c2c8dd2e5e35e0909cb9058c225ca0 /util.c
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 'util.c')
-rw-r--r--util.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/util.c b/util.c
index 8220d2f..9480448 100644
--- a/util.c
+++ b/util.c
@@ -15,14 +15,15 @@
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
- * $OpenBSD: util.c,v 1.16 2012/11/09 03:52:02 okan Exp $
+ * $OpenBSD: util.c,v 1.17 2015/01/19 14:54:16 okan Exp $
*/
-#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>