cleanups/fixes for ASM handling
[libfirm] / ir / be / test / kahansum.c
index 79d6744..d02c5a6 100644 (file)
@@ -1,3 +1,5 @@
+#include <stdio.h>
+
 float kahanSum(const float A[], int n) {
        float sum = 0.0, C = 0.0, Y, T;
        int i;