Fix warnings

This commit is contained in:
Vadim Vetrov
2025-02-03 15:30:10 +03:00
parent f7d0bed7aa
commit a7b689b320
2 changed files with 1 additions and 3 deletions

View File

@@ -157,7 +157,7 @@ typedef unsigned int uint_t;
#elif defined(__GNUC__)
int strcasecmp(const char *s1, const char *s2);
int strncasecmp(const char *s1, const char *s2, size_t n);
#if !(_SVID_SOURCE || _BSD_SOURCE || _POSIX_C_SOURCE >= 1 || _XOPEN_SOURCE || _POSIX_SOURCE)
#if !(defined(_SVID_SOURCE) || defined(_BSD_SOURCE) || (defined(_POSIX_C_SOURCE) && _POSIX_C_SOURCE >= 1) || defined(_XOPEN_SOURCE) || defined(_POSIX_SOURCE))
char *strtok_r(char *s, const char *delim, char **last);
#endif