summaryrefslogtreecommitdiff
path: root/bin/chio
diff options
context:
space:
mode:
authorConstantine A. Murenin <cnst@cvs.openbsd.org>2007-06-01 06:48:35 +0000
committerConstantine A. Murenin <cnst@cvs.openbsd.org>2007-06-01 06:48:35 +0000
commit77fce94f7c3884b240099f839d8be24f2de08998 (patch)
treede9789c22f3af75080682d19aeb83223cd385a10 /bin/chio
parent824a970e30351d4de896876ea15ace2a180afc11 (diff)
fix -Wall 'implicit declaration' of err & errx: s/errno.h/err.h/; ok deraadt, henning
Diffstat (limited to 'bin/chio')
-rw-r--r--bin/chio/parse.y4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/chio/parse.y b/bin/chio/parse.y
index b99488d86da..552ebdee668 100644
--- a/bin/chio/parse.y
+++ b/bin/chio/parse.y
@@ -1,4 +1,4 @@
-/* $OpenBSD: parse.y,v 1.3 2006/05/29 01:41:27 henning Exp $ */
+/* $OpenBSD: parse.y,v 1.4 2007/06/01 06:48:34 cnst Exp $ */
/*
* Copyright (c) 2006 Bob Beck <beck@openbsd.org>
@@ -26,7 +26,7 @@
#include <sys/queue.h>
#include <ctype.h>
-#include <errno.h>
+#include <err.h>
#include <libgen.h>
#include <limits.h>
#include <stdarg.h>