add further ioctl time64 fallback conversion for device-specific command
[musl] / src / string / strcspn.c
index cfdba11..a0c617b 100644 (file)
@@ -3,8 +3,6 @@
 #define BITOP(a,b,op) \
  ((a)[(size_t)(b)/(8*sizeof *(a))] op (size_t)1<<((size_t)(b)%(8*sizeof *(a))))
 
-char *__strchrnul(const char *, int);
-
 size_t strcspn(const char *s, const char *c)
 {
        const char *a = s;