aboutsummaryrefslogtreecommitdiff
path: root/src/makesource.sh
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2009-04-01 15:09:36 +0000
committerIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2009-04-01 15:09:36 +0000
commit4e0c6eebcb4fb1b82558da77ccf19049e81da27c (patch)
treee05080ab03fb8dc82a0e83560f1e230bba29e599 /src/makesource.sh
parenta8fe57f7771b02f4e502b8ae3f0d02a9f819d486 (diff)
dash-compatibility
svn path=/trunk/externals/zexy/; revision=10944
Diffstat (limited to 'src/makesource.sh')
-rwxr-xr-xsrc/makesource.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/makesource.sh b/src/makesource.sh
index 5caafeb..ee2211c 100755
--- a/src/makesource.sh
+++ b/src/makesource.sh
@@ -11,7 +11,7 @@ SED=sed
#################################
## functions
-function head_h() {
+head_h() {
echo "/* zexy-setup autogenerated header-file"
echo " * generated by \"$0\""
echo " * !! DO NOT MANUALLY EDIT !!"
@@ -21,14 +21,14 @@ function head_h() {
echo "#define Z_ZEXY_H__"
}
-function foot_h() {
+foot_h() {
echo ""
echo "void z_zexy_setup(void);"
echo "#endif /* Z_ZEXY_H__ */"
echo ""
}
-function head_c() {
+head_c() {
echo "/* zexy-setup autogenerated setup-file"
echo " * generated by \"$0\""
echo " * !! DO NOT MANUALLY EDIT !!"
@@ -40,7 +40,7 @@ function head_c() {
echo "{"
}
-function foot_c() {
+foot_c() {
echo "}"
echo
}