diff options
Diffstat (limited to 'signal.c')
-rw-r--r-- | signal.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/signal.c b/signal.c new file mode 100644 index 0000000..13aa074 --- /dev/null +++ b/signal.c @@ -0,0 +1,13 @@ +#include <signal.h> +#include "test.h" + +#include "signal.d" + +void test_signal_h(void) +{ + testing_header("signal.h"); + + test_distinct(signals); + + testing_end(); +} |