summaryrefslogtreecommitdiff
path: root/devel/c2mdoc/files/c2mdoc.awk
diff options
context:
space:
mode:
Diffstat (limited to 'devel/c2mdoc/files/c2mdoc.awk')
-rw-r--r--devel/c2mdoc/files/c2mdoc.awk4
1 files changed, 3 insertions, 1 deletions
diff --git a/devel/c2mdoc/files/c2mdoc.awk b/devel/c2mdoc/files/c2mdoc.awk
index 5bf92fecbc11..ec7dfb9ab84a 100644
--- a/devel/c2mdoc/files/c2mdoc.awk
+++ b/devel/c2mdoc/files/c2mdoc.awk
@@ -3,9 +3,11 @@
# c2mdoc.awk -- Takes tabulated output from cproto(1) and turns it into
# mdoc(7) markup.
#
+# $FreeBSD$
+#
BEGIN { FS="\t" }
{
- printf ".Fa %s\n", $1 ;
+ printf ".Ft %s\n", $1 ;
printf ".Fn %s", $2 ;
for (i = 4; i < NF; i++)
printf " \"%s\"", $i