Overview
Comment: | add missing script |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
a6aed292a53464f5bd02d7f087ea3290 |
User & Date: | lexi on 2019-08-19 02:13:58 |
Other Links: | manifest | tags |
Context
2019-08-19
| ||
02:18 | clean out legacy code check-in: 724bbbbe91 user: lexi tags: trunk | |
02:13 | add missing script check-in: a6aed292a5 user: lexi tags: trunk | |
02:04 | add makerule, add include mode to typesize check-in: 8b84a67d85 user: lexi tags: trunk | |
Changes
Added arch/errtbl.awk version [4d84a940c1].
1 +BEGIN { 2 + FS=" " 3 + 4 + print "#ifndef KIplatform_error" 5 + print "#define KIplatform_error" 6 + print "enum k_platform_error {" 7 +} 8 + 9 +{ print "\t" $1 " = " $2 "," } 10 + 11 +END { 12 + print "};" 13 + print "#endif" 14 +}