summaryrefslogtreecommitdiffstats
path: root/usr.sbin/bind/lib/isc/regex.c
diff options
context:
space:
mode:
authorflorian <florian@openbsd.org>2020-01-20 18:49:45 +0000
committerflorian <florian@openbsd.org>2020-01-20 18:49:45 +0000
commit855da32c6e5a8968082ab84ee46c8b38fbde74ba (patch)
treec99d5941e500bbf4e4bea30ebdf6977740b96daf /usr.sbin/bind/lib/isc/regex.c
parentRemove various unused lib/isc bits. (diff)
downloadwireguard-openbsd-855da32c6e5a8968082ab84ee46c8b38fbde74ba.tar.xz
wireguard-openbsd-855da32c6e5a8968082ab84ee46c8b38fbde74ba.zip
As millert@ points out we can replace isc_string_touint64 with
strtoull(3) and then get rid of lib/isc/string.c OK millert
Diffstat (limited to 'usr.sbin/bind/lib/isc/regex.c')
-rw-r--r--usr.sbin/bind/lib/isc/regex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/bind/lib/isc/regex.c b/usr.sbin/bind/lib/isc/regex.c
index a93fdd1d6d3..bd733042dcd 100644
--- a/usr.sbin/bind/lib/isc/regex.c
+++ b/usr.sbin/bind/lib/isc/regex.c
@@ -19,7 +19,7 @@
#include <isc/file.h>
#include <isc/regex.h>
-#include <isc/string.h>
+#include <string.h>
#if VALREGEX_REPORT_REASON
#define FAIL(x) do { reason = (x); goto error; } while(0)