Add strtonum protected with _OPENBSD_SOURCE

This commit is contained in:
christos 2015-01-16 18:40:16 +00:00
parent 0740ca3681
commit 5bdc27618e
1 changed files with 5 additions and 1 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: stdlib.h,v 1.110 2014/06/18 17:48:22 christos Exp $ */
/* $NetBSD: stdlib.h,v 1.111 2015/01/16 18:40:16 christos Exp $ */
/*-
* Copyright (c) 1990, 1993
@ -123,6 +123,10 @@ double strtod(const char * __restrict, char ** __restrict);
long strtol(const char * __restrict, char ** __restrict, int);
unsigned long
strtoul(const char * __restrict, char ** __restrict, int);
#ifdef _OPENBSD_SOURCE
long long strtonum(const char * __restrict, long long, long long,
const char ** __restrict);
#endif
int system(const char *);
/* These are currently just stubs. */