diff options
author | Jakob Kaivo <jkk@ung.org> | 2019-03-01 18:51:37 -0500 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2019-03-01 18:51:37 -0500 |
commit | cf342ad275c05edf177206b8931ebca8890f591a (patch) | |
tree | 2f4fa01306878a884465ee530f8dec84525ed5d8 | |
parent | a3dcafdf2fbc4445498b14d999c7680ed2329b54 (diff) |
put *all* the distinct values in the array
-rwxr-xr-x | defs2d.awk | 2 | ||||
-rw-r--r-- | signal.d | 1 |
2 files changed, 2 insertions, 1 deletions
@@ -6,7 +6,7 @@ /distinct/ { printf("static int %s[] = {\n", $2); - for (i = 3; i < NF; i++) { + for (i = 3; i <= NF; i++) { #printf("#ifndef %s\n", $i); #printf("#error %s not defined\n", $i); #printf("#endif\n"); @@ -6,4 +6,5 @@ static int signals[] = { SIGILL, SIGINT, SIGSEGV, + SIGTERM, }; |