* libc/include/string.h (ffsl): Declare as GNU function.
(ffsll): Ditto.
This commit is contained in:
parent
d326f841c3
commit
da77c6d1e5
|
@ -1,3 +1,8 @@
|
|||
2014-10-08 Corinna Vinschen <vinschen@redhat.com>
|
||||
|
||||
* libc/include/string.h (ffsl): Declare as GNU function.
|
||||
(ffsll): Ditto.
|
||||
|
||||
2014-09-17 Jeff Johnston <jjohnstn@redhat.com>
|
||||
|
||||
* libc/include/sys/features.h: Add __NEWLIB__ and
|
||||
|
|
|
@ -90,6 +90,11 @@ char *_EXFUN(strndup,(const char *, size_t));
|
|||
char *_EXFUN(_strndup_r,(struct _reent *, const char *, size_t));
|
||||
#endif
|
||||
|
||||
#if __GNU_VISIBLE
|
||||
int _EXFUN(ffsl,(long));
|
||||
int _EXFUN(ffsll, (long long));
|
||||
#endif
|
||||
|
||||
/* There are two common strerror_r variants. If you request
|
||||
_GNU_SOURCE, you get the GNU version; otherwise you get the POSIX
|
||||
version. POSIX requires that #undef strerror_r will still let you
|
||||
|
|
Loading…
Reference in New Issue