summaryrefslogtreecommitdiff
path: root/src/signal/SIGABRT.c
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2019-03-01 21:21:58 -0500
committerJakob Kaivo <jkk@ung.org>2019-03-01 21:21:58 -0500
commitc8d00441fb11a617e462339309fab7c6f78353a4 (patch)
tree755e51d6b27d82007cbc57e7e65d1f9a34e589c3 /src/signal/SIGABRT.c
parent19f7605e4abf54ad158a324bcb8abe57a1dfeb5c (diff)
set signals to match requirements for kill and trap commands, adjust others accordingly
Diffstat (limited to 'src/signal/SIGABRT.c')
-rw-r--r--src/signal/SIGABRT.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/signal/SIGABRT.c b/src/signal/SIGABRT.c
index f1878ecf..ce42a249 100644
--- a/src/signal/SIGABRT.c
+++ b/src/signal/SIGABRT.c
@@ -1,10 +1,11 @@
#include <signal.h>
-#define SIGABRT (1)
+#define SIGABRT (6)
/** abnormal termination **/
/***
is a signal indicating that the program is being terminated abnormally,
such as when FUNCTION(abort) is called.
***/
+/* Value selected to match requirements for COMMAND(kill) and COMMAND(trap). */
/*
STDC(1)
*/