summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2004-08-03 19:59:43 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2004-08-03 19:59:43 +0000
commit138bfad00728e6b300cc025baa3661cb845b793e (patch)
tree074c4eb8b7050fec17ee9e43b09c8df68b7a2512
parent19e801a6d263dd0cde6b95d83ef27d907e82602d (diff)
Update strtonum() protor
-rw-r--r--include/stdlib.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/stdlib.h b/include/stdlib.h
index 174a309419a..76a2a1f3eb9 100644
--- a/include/stdlib.h
+++ b/include/stdlib.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: stdlib.h,v 1.31 2004/05/03 19:16:36 tedu Exp $ */
+/* $OpenBSD: stdlib.h,v 1.32 2004/08/03 19:59:42 millert Exp $ */
/* $NetBSD: stdlib.h,v 1.25 1995/12/27 21:19:08 jtc Exp $ */
/*-
@@ -130,12 +130,12 @@ double strtod(const char *, char **);
long strtol(const char *, char **, int);
long long
strtoll(const char *, char **, int);
+long long
+ strtonum(const char *, long long, long long, const char **);
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 */