summaryrefslogtreecommitdiff
path: root/devel/c2mdoc/files
diff options
context:
space:
mode:
authorMathieu Arnold <mat@FreeBSD.org>2021-04-06 16:21:47 +0200
committerMathieu Arnold <mat@FreeBSD.org>2021-04-06 16:31:13 +0200
commit135fdeebb99c3569e42d8162b265e15d29bd937d (patch)
tree0633c9aadceddb9aa52cae2dc3d7e7e6732eece9 /devel/c2mdoc/files
parentRemove # $FreeBSD$ from Makefiles. (diff)
all: Remove all other $FreeBSD keywords.
Diffstat (limited to 'devel/c2mdoc/files')
-rw-r--r--devel/c2mdoc/files/c2mdoc3
-rw-r--r--devel/c2mdoc/files/c2mdoc.awk4
2 files changed, 1 insertions, 6 deletions
diff --git a/devel/c2mdoc/files/c2mdoc b/devel/c2mdoc/files/c2mdoc
index e1b789998d04..17e4114eb1e2 100644
--- a/devel/c2mdoc/files/c2mdoc
+++ b/devel/c2mdoc/files/c2mdoc
@@ -2,9 +2,6 @@
#
# c2mdoc -- Front-end which abuses the cproto parser to spit out
# mdoc(7) format prototypes for use in FreeBSD documentation.
-#
-# $FreeBSD$
-#
AWKSCRIPT="%%LIBEXECDIR%%/c2mdoc.awk"
CPROTO='-P"int\tf\t(\ta\t,\tb\t)" -pq -f3'
diff --git a/devel/c2mdoc/files/c2mdoc.awk b/devel/c2mdoc/files/c2mdoc.awk
index 447153bbc163..35c43761628d 100644
--- a/devel/c2mdoc/files/c2mdoc.awk
+++ b/devel/c2mdoc/files/c2mdoc.awk
@@ -2,9 +2,7 @@
#
# c2mdoc.awk -- Takes tabulated output from cproto(1) and turns it into
# mdoc(7) markup.
-#
-# $FreeBSD$
-#
+
BEGIN { FS="\t" }
{
printf ".Ft %s\n", $1 ;