You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tried on a couple machines and got the same result:
src/be_strlib.c: In function ‘str_startswith’:
src/be_strlib.c:967:17: error: implicit declaration of function ‘strncasecmp’; did you mean ‘strncmp’? [-Wimplicit-function-declaration]
967 | if (strncasecmp(s, p, len) == 0) {
| ^~~~~~~~~~~
| strncmp
make: *** [Makefile:68: src/be_strlib.o] Error 1
The solution was to add strings.h to src/be_strlib.c:
#include <string.h>
#include <strings.h>
The text was updated successfully, but these errors were encountered:
I tried on a couple machines and got the same result:
The solution was to add
strings.h
tosrc/be_strlib.c
:The text was updated successfully, but these errors were encountered: