]> git.sur5r.net Git - cc65/blobdiff - test/ref/spill.c
remote TABs in doc/ and test/
[cc65] / test / ref / spill.c
index 2aedf0c8c9ac91e117aa5d33f6b55441927c4bce..316928ab32d85e38299754725ab7fafced4305c0 100644 (file)
@@ -4,6 +4,7 @@
   !!LICENCE!!     own, freely distributeable for non-profit. read CPYRIGHT.LCC
 */
 
+#include "common.h"
 #include <stdio.h>
 
 int main(void)
@@ -50,6 +51,6 @@ int j, k, m, n;
 #endif
 
 f5(){
-       x=A[k*m]*A[j*m]+B[k*n]*B[j*n];
-       x=A[k*m]*B[j*n]-B[k*n]*A[j*m];
+        x=A[k*m]*A[j*m]+B[k*n]*B[j*n];
+        x=A[k*m]*B[j*n]-B[k*n]*A[j*m];
 }