DELETED arch/errtbl.awk Index: arch/errtbl.awk ================================================================== --- arch/errtbl.awk +++ arch/errtbl.awk @@ -1,14 +0,0 @@ -BEGIN { - FS=" " - - print "#ifndef KIplatform_error" - print "#define KIplatform_error" - print "enum k_platform_error {" -} - -{ print "\t" $1 " = " $2 "," } - -END { - print "};" - print "#endif" -} DELETED arch/syscall.awk Index: arch/syscall.awk ================================================================== --- arch/syscall.awk +++ arch/syscall.awk @@ -1,17 +0,0 @@ -BEGIN { - if (out == "h") { - print "#ifndef KIplatform_syscalls" - print "#define KIplatform_syscalls" - print "enum k_platform_syscall {" - } -} - -out == "h" { print "\tk_platform_syscall_"$1" = "$2"," } # c header -out == "s" { print "%define sys."$1" "$2 } # assembly - -END { - if (out == "h") { - print "};" - print "#endif" - } -}