Bug fix in strswap
authorceriel <none@none>
Thu, 26 Feb 1987 14:08:16 +0000 (14:08 +0000)
committerceriel <none@none>
Thu, 26 Feb 1987 14:08:16 +0000 (14:08 +0000)
lang/basic/lib/swap.c

index bddc0ff..b13b7e5 100644 (file)
@@ -21,9 +21,9 @@ double *i1,*i2;
 }
 
 _strswap(s1,s2)
-String *s1,*s2;
+String **s1,**s2;
 {
-       String s;
+       String *s;
        s= *s1;
        *s1= *s2;
        *s2 = s;