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