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