Files
geant4/source/global/STLInterface/wrappers/AIX-xlC/cstring
T
2016-06-08 15:09:25 +02:00

9 lines
165 B
Plaintext

#ifndef __STD_CSTRING
#define __STD_CSTRING
#include <string.h>
int strcasecmp(const char *s1, const char *s2) { return strcmp(s1,s2); }
#endif /*__STD_CSTRING*/