Changeset 4284


Ignore:
Timestamp:
2003-05-14T16:18:26+12:00 (21 years ago)
Author:
jrm21
Message:

the sysfuncs.h header file confuses our gcc, and we don't really need it
on linux anyway.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/perllib/Kea-1.1.4/Iterated-Lovins-stemmer/stem.c

    r1972 r4284  
    2424static char *RCSID = "$Id$";
    2525
    26 #include "sysfuncs.h"
     26#include <stdlib.h>
     27//#include "sysfuncs.h"
    2728
    2829
     
    606607  if (*h == ch)         /* Check for double consonant        */
    607608    {
    608       if (strchr ("bdglmnprst", ch) != NULL)
     609      if (strchr ("bdglmnprst", ch) != (char *)NULL)
    609610    {
    610611      *stem_end = EOS;
Note: See TracChangeset for help on using the changeset viewer.