aboutsummaryrefslogtreecommitdiff
path: root/contrib/less/mkfuncs.awk
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/less/mkfuncs.awk')
-rw-r--r--contrib/less/mkfuncs.awk9
1 files changed, 0 insertions, 9 deletions
diff --git a/contrib/less/mkfuncs.awk b/contrib/less/mkfuncs.awk
deleted file mode 100644
index dea28acebf52..000000000000
--- a/contrib/less/mkfuncs.awk
+++ /dev/null
@@ -1,9 +0,0 @@
-BEGIN { FS="("; state = 0 }
-
-/^ public/ { ftype = $0; state = 1 }
-
-{ if (state == 1)
- state = 2
- else if (state == 2)
- { print ftype,$1,"();"; state = 0 }
-}