libk  Check-in [a6aed292a5]

Overview
Comment:add missing script
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: a6aed292a53464f5bd02d7f087ea3290351549963d3d4fd7ce668678901729df
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
2
3
4
5
6
7
8
9
10
11
12
13
14
BEGIN {
	FS=" "

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

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

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