summaryrefslogtreecommitdiffstats
path: root/include/stdlib.h
diff options
context:
space:
mode:
authorobrien <obrien@FreeBSD.org>2001-02-27 13:33:07 +0000
committerobrien <obrien@FreeBSD.org>2001-02-27 13:33:07 +0000
commitbb70e1687a5a72cc582496d32293aed2b63f5647 (patch)
treea6ddbcda2c8416d0bced69bd65a91d752bc75d50 /include/stdlib.h
parenta7aa01b9b6a44b97d7111edaa5ab21b829093ccd (diff)
downloadFreeBSD-src-bb70e1687a5a72cc582496d32293aed2b63f5647.zip
FreeBSD-src-bb70e1687a5a72cc582496d32293aed2b63f5647.tar.gz
Impliment the ISO-C99 strto[u]ll()
and rewrite strto[u]q() in terms of it.
Diffstat (limited to 'include/stdlib.h')
-rw-r--r--include/stdlib.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/stdlib.h b/include/stdlib.h
index 96724bc..372bbcd 100644
--- a/include/stdlib.h
+++ b/include/stdlib.h
@@ -104,8 +104,12 @@ void *realloc __P((void *, size_t));
void srand __P((unsigned));
double strtod __P((const char *, char **));
long strtol __P((const char *, char **, int));
+long long
+ strtoll __P((const char *, char **, int));
unsigned long
strtoul __P((const char *, char **, int));
+unsigned long long
+ strtoull __P((const char *, char **, int));
int system __P((const char *));
int mblen __P((const char *, size_t));
OpenPOWER on IntegriCloud