Pad the names of fehler*.c with leading zeros for sorting.
[libfirm] / ir / be / test / fehler037.c
1 #include <stdio.h>
2
3 int a[10];
4
5 int main() {
6         int *p = &a[0];
7         int *q = &a[9];
8
9         printf("%d\n", p - q);
10         return 0;
11 }