diff options
| author | David E. O'Brien <obrien@FreeBSD.org> | 2001-02-27 13:33:07 +0000 |
|---|---|---|
| committer | David E. O'Brien <obrien@FreeBSD.org> | 2001-02-27 13:33:07 +0000 |
| commit | 4c0440cb8652801c1c3750a474f7ddbb17897cdf (patch) | |
| tree | eb116378d50e15fc35d1602c0784e9b8bd920e36 /include/stdlib.h | |
| parent | 1b0dabf0c01e7ada145b752392609ed5438971df (diff) | |
Notes
Diffstat (limited to 'include/stdlib.h')
| -rw-r--r-- | include/stdlib.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/stdlib.h b/include/stdlib.h index 96724bc2f282..372bbcd93954 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)); |
