comparison src/share/vm/utilities/globalDefinitions_visCPP.hpp @ 4849:520830f632e7

7131346: Parsing of boolean arguments to diagnostic commands is broken Reviewed-by: dholmes, dcubed
author fparain
date Wed, 25 Jan 2012 10:32:29 -0800
parents f08d439fab8c
children 40b4aaf010e4
comparison
equal deleted inserted replaced
4847:78dadb7b16ab 4849:520830f632e7
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