diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2009-06-11 20:52:56 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2009-06-11 20:52:56 (GMT) |
commit | 9f0bec79a2f8ead640fbe897d40006d70f38c3a2 (patch) | |
tree | 730f0802b9407fc9624694e6e36a21d1372727d9 /src/H5private.h | |
parent | bc2bd03a466909e874220e3f08e6abe79a5dbe9b (diff) | |
download | hdf5-9f0bec79a2f8ead640fbe897d40006d70f38c3a2.zip hdf5-9f0bec79a2f8ead640fbe897d40006d70f38c3a2.tar.gz hdf5-9f0bec79a2f8ead640fbe897d40006d70f38c3a2.tar.bz2 |
[svn-r17036] Updated perf_serial test to work on windows. Bring back from trunk.
Tested:
Windows
Diffstat (limited to 'src/H5private.h')
-rw-r--r-- | src/H5private.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/H5private.h b/src/H5private.h index 998b7c3..ccfbd5d 100644 --- a/src/H5private.h +++ b/src/H5private.h @@ -1152,6 +1152,9 @@ H5_DLL int HDfprintf (FILE *stream, const char *fmt, ...); #ifndef HDstrcmp #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 */ |