From 5b4aeab55c96ed86a909335ec33077ccc41a65d5 Mon Sep 17 00:00:00 2001 From: "David G. Holm" Date: Wed, 16 Jan 2002 16:11:02 +0000 Subject: [PATCH] See ChangeLog entry 2002-01-16 11:10 UTC-0500 David G. Holm --- harbour/ChangeLog | 4 ++++ harbour/contrib/libct/charsort.c | 7 ++++++- 2 files changed, 10 insertions(+), 1 deletion(-) 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;