From bc41fb1d635eca6daa24d4dfeb6fae28bf2b1773 Mon Sep 17 00:00:00 2001 From: tedu <> Date: Mon, 3 May 2004 19:16:36 +0000 Subject: [PATCH] strtonum prototype --- src/include/stdlib.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/include/stdlib.h b/src/include/stdlib.h index 84d25dae..174a3094 100644 --- a/src/include/stdlib.h +++ b/src/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 */