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