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 /defs2d.awk | |
parent | a3dcafdf2fbc4445498b14d999c7680ed2329b54 (diff) |
put *all* the distinct values in the array
Diffstat (limited to 'defs2d.awk')
-rwxr-xr-x | defs2d.awk | 2 |
1 files changed, 1 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"); |