diff options
author | imp <imp@FreeBSD.org> | 2004-12-31 21:12:17 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2004-12-31 21:12:17 +0000 |
commit | 0ccfc318ae47722c61d85019e819fa932fcc8e6b (patch) | |
tree | d1d8c2a775524410ed3e93d9e7f1a435bc3a0255 /sys/tools | |
parent | d54bd5773167c6e20554670fa343baa9895d7279 (diff) | |
download | FreeBSD-src-0ccfc318ae47722c61d85019e819fa932fcc8e6b.zip FreeBSD-src-0ccfc318ae47722c61d85019e819fa932fcc8e6b.tar.gz |
dheader and hheader were the same function, really, so rename one of
them to header, kill the other and use both with a different arg...
Diffstat (limited to 'sys/tools')
-rw-r--r-- | sys/tools/usbdevs2h.awk | 48 |
1 files changed, 13 insertions, 35 deletions
diff --git a/sys/tools/usbdevs2h.awk b/sys/tools/usbdevs2h.awk index fff6f1b..40f3cb1 100644 --- a/sys/tools/usbdevs2h.awk +++ b/sys/tools/usbdevs2h.awk @@ -37,45 +37,25 @@ function usage() exit 1; } -function dheader(dfile) +function header(file) { if (os == "NetBSD") - printf("/*\t\$NetBSD\$\t*/\n\n") > dfile + printf("/*\t\$NetBSD\$\t*/\n\n") > file else if (os == "FreeBSD") - printf("/* \$FreeBSD\$ */\n\n") > dfile + printf("/* \$FreeBSD\$ */\n\n") > file else if (os == "OpenBSD") - printf("/*\t\$OpenBSD\$\t*/\n\n") > dfile + printf("/*\t\$OpenBSD\$\t*/\n\n") > file else - printf("/* ??? */\n\n") > dfile - printf("/*\n") > dfile + printf("/* ??? */\n\n") > file + printf("/*\n") > file printf(" * THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT.\n") \ - > dfile - printf(" *\n") > dfile - printf(" * generated from:\n") > dfile - printf(" *\t%s\n", VERSION) > dfile - printf(" */\n") > dfile + > file + printf(" *\n") > file + printf(" * generated from:\n") > file + printf(" *\t%s\n", VERSION) > file + printf(" */\n") > file } -function hheader(hfile) -{ - if (os == "NetBSD") - printf("/*\t\$NetBSD\$\t*/\n\n") > hfile - else if (os == "FreeBSD") - printf("/* \$FreeBSD\$ */\n\n") > hfile - else if (os == "OpenBSD") - printf("/*\t\$OpenBSD\$\t*/\n\n") > hfile - else - printf("/* ??? */\n\n") > hfile - printf("/*\n") > hfile - printf(" * THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT.\n") \ - > hfile - printf(" *\n") > hfile - printf(" * generated from:\n") > hfile - printf(" *\t%s\n", VERSION) > hfile - printf(" */\n") > hfile -} - - function vendor(hfile) { nvendors++ @@ -261,12 +241,10 @@ while ((getline < srcfile) > 0) { if (line == 1) { VERSION = $0 gsub("\\$", "", VERSION) - if (dfile) - dheader(dfile) - + header(dfile) if (hfile) - hheader(hfile) + header(hfile) continue; } if ($1 == "vendor") { |