prefer static first
authorTony Cook <tony@develop-help.com>
Sat, 23 Feb 2013 03:08:36 +0000 (14:08 +1100)
committerTony Cook <tony@develop-help.com>
Sat, 23 Feb 2013 03:08:36 +0000 (14:08 +1100)
DynTest/linstretch.c

index 6579e121e7055444cb077551d2bef9664162587a..9f240ef524ccef292c8acf65d69a38e2a0ec9ece 100644 (file)
@@ -18,8 +18,8 @@ void null_plug(void *ptr) { }
 */
 
 
-unsigned char
 static
+unsigned char
 saturate(int in) {
   if (in>255) { return 255; }
   else if (in>0) return in;