diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-06-29 00:20:12 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-06-29 00:20:12 +0000 |
commit | 44c477eb5293a32c2d0296533d89dc9bfa704de4 (patch) | |
tree | c4e058cb87646c64915f3a7251045eaecabe6d91 /include | |
parent | 88005fb8454df5ee45b68e33cb8bccfd47018a93 (diff) |
Replace strtou?q() with the more standard strtou?ll(), using weak
aliases to fake up strtou?q(). espie@ OK.
Diffstat (limited to 'include')
-rw-r--r-- | include/stdlib.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/stdlib.h b/include/stdlib.h index 998fb4c2549..f6c322a4a67 100644 --- a/include/stdlib.h +++ b/include/stdlib.h @@ -1,4 +1,4 @@ -/* $OpenBSD: stdlib.h,v 1.19 2002/02/20 18:12:44 millert Exp $ */ +/* $OpenBSD: stdlib.h,v 1.20 2002/06/29 00:20:11 millert Exp $ */ /* $NetBSD: stdlib.h,v 1.25 1995/12/27 21:19:08 jtc Exp $ */ /*- @@ -125,8 +125,12 @@ void *realloc(void *, size_t); void srand(unsigned); double strtod(const char *, char **); long strtol(const char *, char **, int); +long long + strtoll(const char *, char **, int); unsigned long strtoul(const char *, char **, int); +unsigned long long + strtoull(const char *, char **, int); int system(const char *); /* these are currently just stubs */ |