diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2009-05-21 15:40:03 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2009-05-21 15:40:03 (GMT) |
commit | d2ef2af9b28e1648345c575403d7e575044b7445 (patch) | |
tree | 581cf5c2c9865c6eedcc1a6a57fb4334bf8a1647 /src/H5private.h | |
parent | b75740341f787f9a4c3ddadeb0668066084b465f (diff) | |
download | hdf5-d2ef2af9b28e1648345c575403d7e575044b7445.zip hdf5-d2ef2af9b28e1648345c575403d7e575044b7445.tar.gz hdf5-d2ef2af9b28e1648345c575403d7e575044b7445.tar.bz2 |
[svn-r16969] Updated perf_serial test to work on windows.
Tested:
Windows and h5committest
Diffstat (limited to 'src/H5private.h')
-rw-r--r-- | src/H5private.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/H5private.h b/src/H5private.h index 43b8a95..cb776de 100644 --- a/src/H5private.h +++ b/src/H5private.h @@ -1156,8 +1156,11 @@ H5_DLL int HDfprintf (FILE *stream, const char *fmt, ...); #define HDstrchr(S,C) strchr(S,C) #endif /* HDstrchr */ #ifndef HDstrcmp - #define HDstrcmp(X,Y) strcmp(X,Y) + #define HDstrcmp(X,Y) strcmp(X,Y) #endif /* HDstrcmp */ +#ifndef HDstrcasecmp + #define HDstrcasecmp(X,Y) strcasecmp(X,Y) +#endif /* HDstrcasecmp */ #ifndef HDstrcoll #define HDstrcoll(X,Y) strcoll(X,Y) #endif /* HDstrcoll */ |