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