Browse Source

strtonum prototype

OPENBSD_3_6
tedu 20 years ago
parent
commit
bc41fb1d63
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      src/include/stdlib.h

+ 3
- 1
src/include/stdlib.h View File

@ -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 */


Loading…
Cancel
Save