mirror of
https://github.com/RGBCube/serenity
synced 2025-10-15 13:22:23 +00:00
11 lines
188 B
C++
11 lines
188 B
C++
#include <signal.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
|
|
int main(int, char**)
|
|
{
|
|
for (int i = 1; i < 32; ++i) {
|
|
printf("%d: '%s'\n", i, strsignal(i));
|
|
}
|
|
return 0;
|
|
}
|