diff options
-rwxr-xr-x | src/makesource.sh | 8 |
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 } |