We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
/usr/include/string.h:380:14: error: conflicting types for 'strcasestr'; have 'char *(const char *, const char *)' 380 | extern char *strcasestr (const char *__haystack, const char *__needle) | ^~~~~~~~~~ mimetex.c:428:13: note: previous declaration of 'strcasestr' with type 'const char *(const char *, const char *)' 428 | const char *strcasestr(const char *s1, const char *s2);
Removing the const from const char *strcasestr seems to fix it.
const
const char *strcasestr
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Removing the
const
fromconst char *strcasestr
seems to fix it.The text was updated successfully, but these errors were encountered: