diff options
author | ache <ache@FreeBSD.org> | 2001-11-28 01:51:00 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 2001-11-28 01:51:00 +0000 |
commit | 879d96aeb678c23b6fa4dbf84ea7e18eb0b3fa89 (patch) | |
tree | 97f866765d991866bd061741188481fec18ae1c6 /include | |
parent | 7a696f8fcb3241b19cf29b67f51e75be559fb8b7 (diff) | |
download | FreeBSD-src-879d96aeb678c23b6fa4dbf84ea7e18eb0b3fa89.zip FreeBSD-src-879d96aeb678c23b6fa4dbf84ea7e18eb0b3fa89.tar.gz |
Fix just added atoll prototype
Diffstat (limited to 'include')
-rw-r--r-- | include/stdlib.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/stdlib.h b/include/stdlib.h index 5fb80da..e9a689b 100644 --- a/include/stdlib.h +++ b/include/stdlib.h @@ -94,7 +94,7 @@ int atexit __P((void (*)(void))); double atof __P((const char *)); int atoi __P((const char *)); long atol __P((const char *)); -long atoll __P((const char *)); +long long atoll __P((const char *)); void *bsearch __P((const void *, const void *, size_t, size_t, int (*)(const void *, const void *))); void *calloc __P((size_t, size_t)); |