Files
RedBear-OS/tests/signals/kill0-self.c
T
Josh Williams 901b8099a2 add stdint.h to test_helpers
add tests for signals
2025-04-20 21:17:35 +02:00

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;
}