cc -pthread -Wall -Wextra -Werror -Wno-error=deprecated -Wno-error=deprecated-declarations ctype/isalnum_l.c -o ctype/isalnum_l -D_POSIX_C_SOURCE=202405L -lm -lpthread -liconv ctype/isalnum_l.c:5:17: error: type specifier missing, defaults to 'int' [-Werror,-Wimplicit-int] int (*foo)(int, locale_t) = isalnum_l; ^ ctype/isalnum_l.c:5:29: error: use of undeclared identifier 'isalnum_l'; did you mean 'isalnum'? int (*foo)(int, locale_t) = isalnum_l; ^~~~~~~~~ isalnum /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_ctype.h:212:1: note: 'isalnum' declared here isalnum(int _c) ^ ctype/isalnum_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) = isalnum_l; ^ ~~~~~~~~~ 3 errors generated.