*** ./libs/LL/LL.c.cln	Mon Jan 10 09:52:52 1994
--- ./libs/LL/LL.c	Thu Jan 13 14:58:36 1994
***************
*** 459,473 ****
  static int IntCompare(const void *el1, const void*el2)
      { return (*UserCompare) (*(void *const*)el1, *(void *const*)el2);}
  */
- /* Using this for the NON-ANSI people */
  
! static int
! IntCompare(el1, el2)
! char *el1;
! char *el2;
!     { return (*UserCompare) (*(char *)el1, *(char *)el2);}
  
- 
  /*--------------------------------------------------------------------------*/
  /*t_LL SysSortLL(t_LL list,  int (*compar) (const void*, const void*))*/
  t_LL
--- 459,467 ----
  static int IntCompare(const void *el1, const void*el2)
      { return (*UserCompare) (*(void *const*)el1, *(void *const*)el2);}
  */
  
! static int IntCompare();
  
  /*--------------------------------------------------------------------------*/
  /*t_LL SysSortLL(t_LL list,  int (*compar) (const void*, const void*))*/
  t_LL
***************
*** 497,499 ****
--- 491,500 ----
    return list;
  }
  
+ /* Using this for the NON-ANSI people */
+ 
+ static int
+ IntCompare(el1, el2)
+ char *el1;
+ char *el2;
+     { return (*UserCompare) (*(char *)el1, *(char *)el2);}
