aboutsummaryrefslogtreecommitdiffstats
path: root/C2J/mesa33-header/pre2orig-enum.awk
blob: e492a16d77b483a8644cceab4ce4ea1093e5fdaf (plain)
1
2
3
BEGIN { printf "typedef enum {\n" }
	{ print "\t" $2 "\t\t = " $3 "," }
END { printf "};\n" }