X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Ftest%2FHeapSort.c;h=5d82040740e55985f9a755b4faab4f24fd1ee59d;hb=bf467a92ef0c176400639dd2b121c4194c904c03;hp=9be7d8b76ac51cb569d6413fbe0447ee33ecb915;hpb=f2013de32475acd5f3897e57394b235aa00c91f9;p=libfirm diff --git a/ir/be/test/HeapSort.c b/ir/be/test/HeapSort.c index 9be7d8b76..5d8204074 100644 --- a/ir/be/test/HeapSort.c +++ b/ir/be/test/HeapSort.c @@ -106,7 +106,7 @@ static void heapaufbau2(int *a, int *b, int len) { * Sortiert das gegebene Feld b mit den oben angegebenen * Heap-Methoden und gibt das sortierte Feld zurück. */ -static int *heapsort(int *b, int len) { +static int *heapsort_(int *b, int len) { int k; int *c; int *a; @@ -171,7 +171,7 @@ int main (int argc, char *argv[]) { count, seed); // Sortieren - b = heapsort(b, count); + b = heapsort_(b, count); printf("Sorted.\n");