cc -pthread -Wall -Wextra -Werror -Wno-error=deprecated -Wno-error=deprecated-declarations ctype/iscntrl_l.c -o ctype/iscntrl_l -D_POSIX_C_SOURCE=202405L -lm -lpthread -liconv ctype/iscntrl_l.c:5:17: error: type specifier missing, defaults to 'int' [-Werror,-Wimplicit-int] int (*foo)(int, locale_t) = iscntrl_l; ^ ctype/iscntrl_l.c:5:29: error: use of undeclared identifier 'iscntrl_l'; did you mean 'iscntrl'? int (*foo)(int, locale_t) = iscntrl_l; ^~~~~~~~~ iscntrl /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_ctype.h:230:1: note: 'iscntrl' declared here iscntrl(int _c) ^ ctype/iscntrl_l.c:5:7: error: incompatible function pointer types initializing 'int (*)(int, int)' with an expression of type 'int (int)' [-Werror,-Wincompatible-function-pointer-types] int (*foo)(int, locale_t) = iscntrl_l; ^ ~~~~~~~~~ 3 errors generated.