mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Oops, actually fix the namespace pollution for atoll() as the previous
commit claimed to do.
This commit is contained in:
parent
63f9c0358e
commit
930dbabb42
1 changed files with 4 additions and 4 deletions
|
|
@ -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));
|
||||
|
|
|
|||
Loading…
Reference in a new issue