cc -pthread -Wall -Wextra -Werror=implicit-function-declaration signal/sigtimedwait.c -o signal/sigtimedwait -D_GNU_SOURCE -D_BSD_SOURCE -D_ALL_SOURCE -D_DEFAULT_SOURCE -lm -lpthread -liconv signal/sigtimedwait.c:22:7: error: call to undeclared function 'sigtimedwait'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration] 22 | if ( sigtimedwait(&set, &info, &delay) < 0 ) | ^ signal/sigtimedwait.c:32:7: error: call to undeclared function 'sigqueue'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration] 32 | if ( sigqueue(getpid(), SIGUSR1, sv) < 0 ) | ^ 2 errors generated.