comparison src/share/vm/utilities/globalDefinitions_visCPP.hpp @ 6152:958bb4b7be49

Merge
author asaha
date Tue, 10 Apr 2012 10:42:34 -0700
parents 520830f632e7
children 40b4aaf010e4
comparison
equal deleted inserted replaced
6151:e778c29768e6 6152:958bb4b7be49
128 128
129 129
130 //---------------------------------------------------------------------------------------------------- 130 //----------------------------------------------------------------------------------------------------
131 // Non-standard stdlib-like stuff: 131 // Non-standard stdlib-like stuff:
132 inline int strcasecmp(const char *s1, const char *s2) { return _stricmp(s1,s2); } 132 inline int strcasecmp(const char *s1, const char *s2) { return _stricmp(s1,s2); }
133 inline int strncasecmp(const char *s1, const char *s2, size_t n) {
134 return _strnicmp(s1,s2,n);
135 }
133 136
134 137
135 //---------------------------------------------------------------------------------------------------- 138 //----------------------------------------------------------------------------------------------------
136 // Debugging 139 // Debugging
137 140