]> git.sur5r.net Git - cc65/blobdiff - test/ref/cc65090913.c
remote TABs in doc/ and test/
[cc65] / test / ref / cc65090913.c
index a319fec50dabdee49e7e7eda2560af1b212999a7..3a92dc6ec4126a696e63ad4f7fe6128a01f4cfde 100644 (file)
 
 */
 
+#include <stdio.h>
+
 int foo=0,bar=2;
 
 int main(void)
 {
     while(foo<bar)
-           label: ++foo;
+            label: ++foo;
 
     printf("foo: %d bar: %d\n",foo,bar);