2000-08-11
2000-08-11 13:44:03 by Henrik Grubbström (Grubba) <grubba@grubba.org>
-
c80ee85f3f1e058df849e3373897a75329bb6341
(11 lines)
(+6/-5)
[
Show
| Annotate
]
Branch: 7.9
Fixed prototype bug.
Rev: src/stralloc.c:1.96
25:
#define HUGE HUGE_VAL
#endif /*!HUGE*/
- RCSID("$Id: stralloc.c,v 1.95 2000/08/10 18:23:17 grubba Exp $");
+ RCSID("$Id: stralloc.c,v 1.96 2000/08/11 13:44:03 grubba Exp $");
#define BEGIN_HASH_SIZE 997
#define MAX_AVG_LINK_LENGTH 3
1042: Inside #if undefined(HAVE_STRCOLL)
#ifndef HAVE_STRCOLL
/* No locale function available */
- int low_binary_strcmp(char *a, ptrdiff_t alen,
+ static int low_binary_strcmp(char *a, ptrdiff_t alen,
char *b, ptrdiff_t blen)
{
low_quick_binary_strcmp(a,alen,b,blen);
1050:
#else
/* takes locale into account */
- static int low_binary_strcmp(char *a,INT32 alen,
- char *b,INT32 blen)
+ static int low_binary_strcmp(char *a, ptrdiff_t alen,
+ char *b, ptrdiff_t blen)
{
INT32 tmp;
while(alen>0 && blen>0)