Artifact 4d84a940c1ac5945c5c1c502ad433aa91f69021ad304823a3d672a33f6d7e970:
- File arch/errtbl.awk — part of check-in [a6aed292a5] at 2019-08-19 02:13:58 on branch trunk — add missing script (user: lexi, size: 189) [annotate] [blame] [check-ins using]
BEGIN { FS=" " print "#ifndef KIplatform_error" print "#define KIplatform_error" print "enum k_platform_error {" } { print "\t" $1 " = " $2 "," } END { print "};" print "#endif" }