mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-10 17:12:55 +02:00
12 lines
188 B
C++
12 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;
|
|
}
|