summaryrefslogtreecommitdiff
path: root/devel/c2mdoc/files
diff options
context:
space:
mode:
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 ;