mirror of
https://github.com/fluencelabs/musl
synced 2025-06-25 04:31:56 +00:00
implement ffsl and ffsll functions
per the resolution of Austin Group issue #617, these are accepted for XSI option in POSIX future and thus I'm treating them as standard functions.
This commit is contained in:
@ -22,6 +22,8 @@ char *rindex (const char *, int);
|
||||
|
||||
#if defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
|
||||
int ffs (int);
|
||||
int ffsl (long);
|
||||
int ffsll (long long);
|
||||
#endif
|
||||
|
||||
int strcasecmp (const char *, const char *);
|
||||
|
Reference in New Issue
Block a user