summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortedu <tedu@openbsd.org>2004-05-03 19:16:36 +0000
committertedu <tedu@openbsd.org>2004-05-03 19:16:36 +0000
commit7d327e3ff79385f81a9e2cf1d59497252467b1a6 (patch)
tree5e0a4a5ea3442ec499fea71083578c3c74d5373e
parentSync some prototypes with the headers (diff)
downloadwireguard-openbsd-7d327e3ff79385f81a9e2cf1d59497252467b1a6.tar.xz
wireguard-openbsd-7d327e3ff79385f81a9e2cf1d59497252467b1a6.zip
strtonum prototype
-rw-r--r--include/stdlib.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/stdlib.h b/include/stdlib.h
index 84d25daedaf..174a309419a 100644
--- a/include/stdlib.h
+++ b/include/stdlib.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: stdlib.h,v 1.30 2004/05/03 17:21:13 millert Exp $ */
+/* $OpenBSD: stdlib.h,v 1.31 2004/05/03 19:16:36 tedu Exp $ */
/* $NetBSD: stdlib.h,v 1.25 1995/12/27 21:19:08 jtc Exp $ */
/*-
@@ -134,6 +134,8 @@ unsigned long
strtoul(const char *, char **, int);
unsigned long long
strtoull(const char *, char **, int);
+unsigned long long
+ strtonum(const char *, long long, unsigned long long, const char **);
int system(const char *);
/* these are currently just stubs */