diff options
author | bde <bde@FreeBSD.org> | 2001-11-29 07:08:56 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 2001-11-29 07:08:56 +0000 |
commit | cb794aeac8e355a0c137ec23b883f8b3a73d1083 (patch) | |
tree | 6aa4a31c7ab55799e37540f6c6e1199e5b43a5e6 /include/stdlib.h | |
parent | 77ac0dbce867d9e3890b380f4279e387756bdcca (diff) | |
download | FreeBSD-src-cb794aeac8e355a0c137ec23b883f8b3a73d1083.zip FreeBSD-src-cb794aeac8e355a0c137ec23b883f8b3a73d1083.tar.gz |
Oops, actually fix the namespace pollution for atoll() as the previous
commit claimed to do.
Diffstat (limited to 'include/stdlib.h')
-rw-r--r-- | include/stdlib.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/stdlib.h b/include/stdlib.h index 24f32ba..31cdb8a 100644 --- a/include/stdlib.h +++ b/include/stdlib.h @@ -96,10 +96,6 @@ int atexit __P((void (*)(void))); double atof __P((const char *)); int atoi __P((const char *)); long atol __P((const char *)); -#ifdef __LONG_LONG_SUPPORTED -long long - atoll __P((const char *)); -#endif void *bsearch __P((const void *, const void *, size_t, size_t, int (*)(const void *, const void *))); void *calloc __P((size_t, size_t)); @@ -151,6 +147,10 @@ __uint32_t arc4random __P((void)); void arc4random_addrandom __P((unsigned char *dat, int datlen)); void arc4random_stir __P((void)); +#ifdef __LONG_LONG_SUPPORTED +long long + atoll __P((const char *)); +#endif char *getbsize __P((int *, long *)); char *cgetcap __P((char *, char *, int)); int cgetclose __P((void)); |