dbertoni    01/04/12 07:20:09

  Modified:    c/src/TestXSLT process.cpp
  Log:
  Changes for OS/390 port.
  
  Revision  Changes    Path
  1.61      +16 -16    xml-xalan/c/src/TestXSLT/process.cpp
  
  Index: process.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/TestXSLT/process.cpp,v
  retrieving revision 1.60
  retrieving revision 1.61
  diff -u -r1.60 -r1.61
  --- process.cpp       2001/04/11 20:30:06     1.60
  +++ process.cpp       2001/04/12 14:20:08     1.61
  @@ -169,6 +169,22 @@
   
   
   
  +#if defined(OS390)
  +#undef stricmp                                                   
  +#include <strings.h>                                             
  +                                                                  
  +int
  +stricmp(
  +                     const char*             str1,
  +                     const char*             str2)     
  +{
  +     return strcasecmp(str1, str2);
  +}
  +
  +#endif
  +
  +
  +
   /**
    * Print argument options.
    */ 
  @@ -344,22 +360,6 @@
   
        cerr << endl << endl;
   }
  -
  -
  -
  -#if defined(OS390)
  -#undef stricmp                                                   
  -#include <strings.h>                                             
  -                                                                  
  -int
  -stricmp(
  -                     const char*             str1,
  -                     const char*             str2)     
  -{
  -     return strcasecmp(str1, str2);
  -}
  -
  -#endif
   
   
   
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to