about summary refs log tree commit diff
path: root/Functions
diff options
context:
space:
mode:
authorSven Wischnowsky <wischnow@users.sourceforge.net>2001-04-02 12:26:41 +0000
committerSven Wischnowsky <wischnow@users.sourceforge.net>2001-04-02 12:26:41 +0000
commite5a265ba8d77529325befc8909eb30347d2746c3 (patch)
tree7597ae5b6c574e01d09873fcee4d34145c10a9c7 /Functions
parent68c486b175f17c3d767e7ee20d2330b238f8242c (diff)
downloadzsh-e5a265ba8d77529325befc8909eb30347d2746c3.tar.gz
zsh-e5a265ba8d77529325befc8909eb30347d2746c3.tar.xz
zsh-e5a265ba8d77529325befc8909eb30347d2746c3.zip
moved to ./Functions/Example/proto
Diffstat (limited to 'Functions')
-rwxr-xr-xFunctions/Misc/proto8
1 files changed, 0 insertions, 8 deletions
diff --git a/Functions/Misc/proto b/Functions/Misc/proto
deleted file mode 100755
index df1826506..000000000
--- a/Functions/Misc/proto
+++ /dev/null
@@ -1,8 +0,0 @@
-#! /bin/sh
-# generate prototypes, if your style is the same as mine
-for i
-do
-	rm $i:r.pro 2>/dev/null
-	grep -v '[{};:#]' $i | grep '^[A-Za-z]' |
-		grep -v static | sed 's/$/;/' >! $i:r.pro
-done