libk  errtbl.awk at [8618103a4e]

File arch/errtbl.awk artifact 4d84a940c1 part of check-in 8618103a4e


BEGIN {
	FS=" "

	print "#ifndef KIplatform_error"
	print "#define KIplatform_error"
	print "enum k_platform_error {"
}

{ print "\t" $1 " = " $2 "," }

END {
	print "};"
	print "#endif"
}