summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTed Unangst <tedu@cvs.openbsd.org>2004-05-03 19:16:37 +0000
committerTed Unangst <tedu@cvs.openbsd.org>2004-05-03 19:16:37 +0000
commit3e724a215d8e192e2ffa83ae2333878938dbbbdb (patch)
tree785bc44930d8fe9d054584ce7c8acbea836b1df9 /include
parent02237f8f1dfcab0f59e03c51fe2047b97c0ccddb (diff)
strtonum prototype
Diffstat (limited to 'include')
-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 */