1b3e94a20d
From release 0.1.0 pre-patched archive. This includes all Red Bear modifications previously maintained as patches in local/patches/relibc/.
16 lines
247 B
C
16 lines
247 B
C
#include <signal.h>
|
|
#include "../test_helpers.h"
|
|
|
|
/*
|
|
* Send signal 0 to self. This just reports whether a signal can be sent.
|
|
*/
|
|
|
|
int main()
|
|
{
|
|
int status = 0;
|
|
|
|
status = kill(getpid(), 0);
|
|
ERROR_IF(kill, status, != 0);
|
|
|
|
return EXIT_SUCCESS;
|
|
} |