clock_adjtime: generalize time64 not to assume old struct layout match
[musl] / include / strings.h
index 2b7e086..db0960b 100644 (file)
@@ -20,7 +20,11 @@ char *index (const char *, int);
 char *rindex (const char *, int);
 #endif
 
+#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 *);
 int strncasecmp (const char *, const char *, size_t);