cc -pthread -Wall -Wextra -Werror=implicit-function-declaration ctype/isblank_l.c -o ctype/isblank_l -D_GNU_SOURCE -D_BSD_SOURCE -D_ALL_SOURCE -D_DEFAULT_SOURCE -lm -lpthread -liconv ctype/isblank_l.c:15:8: error: call to undeclared function 'isblank_l'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration] 15 | if ( !isblank_l(c1, locale) ) | ^ ctype/isblank_l.c:15:8: note: did you mean 'isblank'? /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_ctype.h:229:1: note: 'isblank' declared here 229 | isblank(int _c) | ^ 1 error generated.