diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 2000-05-15 06:29:10 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 2000-05-15 06:29:10 +0000 |
commit | b82d37d2f6dcf386e2cac62f7fceb4e448e880f2 (patch) | |
tree | 244e10aefe5fe63c01d6fb39ecedd2180d1d0289 /sys | |
parent | c99e735896dbe8d273c74f884a9a2d61ff4c6821 (diff) |
We are OpenBSD
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/cardbus/devlist2h.awk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/cardbus/devlist2h.awk b/sys/dev/cardbus/devlist2h.awk index bc0666d0d7c..367cccf23b9 100644 --- a/sys/dev/cardbus/devlist2h.awk +++ b/sys/dev/cardbus/devlist2h.awk @@ -1,5 +1,5 @@ #! /usr/bin/awk -f -# $OpenBSD: devlist2h.awk,v 1.1 2000/03/02 23:03:26 aaron Exp $ +# $OpenBSD: devlist2h.awk,v 1.2 2000/05/15 06:29:09 niklas Exp $ # $NetBSD: devlist2h.awk,v 1.1 1999/10/15 06:07:22 haya Exp $ # # Copyright (c) 1995, 1996 Christopher G. Demetriou @@ -39,7 +39,7 @@ NR == 1 { VERSION = $0 gsub("\\$", "", VERSION) - printf("/*\t\$NetBSD\$\t*/\n\n") > dfile + printf("/*\t\$OpenBSD\$\t*/\n\n") > dfile printf("/*\n") > dfile printf(" * THIS FILE AUTOMATICALLY GENERATED. DO NOT EDIT.\n") \ > dfile @@ -48,7 +48,7 @@ NR == 1 { printf(" *\t%s\n", VERSION) > dfile printf(" */\n") > dfile - printf("/*\t\$NetBSD\$\t*/\n\n") > hfile + printf("/*\t\OpenBSD\$\t*/\n\n") > hfile printf("/*\n") > hfile printf(" * THIS FILE AUTOMATICALLY GENERATED. DO NOT EDIT.\n") \ > hfile |