aboutsummaryrefslogtreecommitdiff
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.awk15
1 files changed, 0 insertions, 15 deletions
diff --git a/devel/c2mdoc/files/c2mdoc.awk b/devel/c2mdoc/files/c2mdoc.awk
deleted file mode 100644
index ec7dfb9ab84a..000000000000
--- a/devel/c2mdoc/files/c2mdoc.awk
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/usr/bin/awk -f
-#
-# c2mdoc.awk -- Takes tabulated output from cproto(1) and turns it into
-# mdoc(7) markup.
-#
-# $FreeBSD$
-#
-BEGIN { FS="\t" }
-{
- printf ".Ft %s\n", $1 ;
- printf ".Fn %s", $2 ;
- for (i = 4; i < NF; i++)
- printf " \"%s\"", $i
- printf "\n" ;
-}