diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 60bcbf8945..1f5c20e742 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -7,6 +7,10 @@ For example: 2002-12-01 23:12 UTC+0100 Foo Bar */ +2002-01-17 21:50 UTC+0300 Alexander Kresin + * source/rdd/dbfntx/dbfntx1.c + * source/rdd/dbcmd.c + ! a bug fixed, related to conditional indexing 2002-01-17 15:32 UTC+0300 Alexander Kresin * source/rdd/dbfntx/dbfntx1.c diff --git a/harbour/contrib/libct/charsort.c b/harbour/contrib/libct/charsort.c index 28da8dd55e..759f96fb63 100644 --- a/harbour/contrib/libct/charsort.c +++ b/harbour/contrib/libct/charsort.c @@ -62,7 +62,12 @@ static size_t ssElementPos; /* TODO: make this thread safe */ static int siDescend; /* TODO: make this thread safe */ /* qsort function */ -static int do_charsort (const void *p1, const void *p2) +#ifdef __IBMCPP__ +int extern _LNK_CONV +#else +static int +#endif +do_charsort (const void *p1, const void *p2) { char *pc1 = (char *)p1;