File indexing completed on 2024-04-28 05:51:05

0001 // from https://bugs.kde.org/show_bug.cgi?id=230184
0002 // author Stefan Westerfeld
0003 // This code is in the public domain.
0004 
0005 #include <stdio.h>
0006 
0007 int main()
0008 {
0009     for (int i = 0; i < 100000000; i++) {
0010         fprintf(stderr, "foo %d\n", i);
0011     }
0012 }