X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;f=debug%2Fsorter%2Fretros.c;h=7bb692f6bead3094d3d3b06a6ea8a9088d3a0042;hb=6cbd32307057f98fc793eaf9dc97c99c62a85a43;hp=0d417bab48429488ef85494ab95ebb99588ab0f5;hpb=1d92ad2e62c2f12405aac4339af536591f721f6a;p=libucw.git diff --git a/debug/sorter/retros.c b/debug/sorter/retros.c index 0d417bab..7bb692f6 100644 --- a/debug/sorter/retros.c +++ b/debug/sorter/retros.c @@ -51,13 +51,13 @@ static int comp_ind(const void *x, const void *y) #define ASORT_ELT(i) a[i].key #define ASORT_SWAP(i,j) do { struct elt t=a[i]; a[i]=a[j]; a[j]=t; } while (0) #define ASORT_EXTRA_ARGS , struct elt *a -#include "ucw/arraysort.h" +#include "ucw/sorter/array-simple.h" #define ASORT_PREFIX(x) asi_##x #define ASORT_KEY_TYPE u32 #define ASORT_ELT(i) ind[i]->key #define ASORT_SWAP(i,j) do { struct elt *t=ind[i]; ind[i]=ind[j]; ind[j]=t; } while (0) -#include "ucw/arraysort.h" +#include "ucw/sorter/array-simple.h" static void r1_sort(void) {