Removed the space between function names and the opening parenthesis.
[mmh] / sbr / copyip.c
index e4253da..e5ded82 100644 (file)
@@ -10,7 +10,7 @@
 
 
 char **
-copyip (char **p, char **q, int len_q)
+copyip(char **p, char **q, int len_q)
 {
        while (*p && --len_q > 0)
                *q++ = *p++;