From: Robert Spalek Date: Mon, 13 Jan 2003 10:14:15 +0000 (+0000) Subject: MJ has forgotten to add ASORT_EXTRA_ARGS at the end of the sort procedure X-Git-Tag: holmes-import~1306 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=c00768164382b6a53a7090b6d015c7a8989141f1;p=libucw.git MJ has forgotten to add ASORT_EXTRA_ARGS at the end of the sort procedure declaration --- diff --git a/lib/arraysort.h b/lib/arraysort.h index 776051e9..3f9d2a18 100644 --- a/lib/arraysort.h +++ b/lib/arraysort.h @@ -53,7 +53,7 @@ #define ASORT_EXTRA_ARGS #endif -static void ASORT_PREFIX(sort)(uns array_size) +static void ASORT_PREFIX(sort)(uns array_size ASORT_EXTRA_ARGS) { struct stk { int l, r; } stack[8*sizeof(uns)]; int l, r, left, right, m;