diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2016-02-02 10:30:48 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2016-02-02 10:30:48 (GMT) |
commit | e25aa5f97d7605efb07b303eeba10d4a8a34485d (patch) | |
tree | a14e366dc066b1ae73831a3471ced5adffd49796 /src | |
parent | 2fb4f0b35eab57f136852ba600572874fd7e37bd (diff) | |
download | hdf5-e25aa5f97d7605efb07b303eeba10d4a8a34485d.zip hdf5-e25aa5f97d7605efb07b303eeba10d4a8a34485d.tar.gz hdf5-e25aa5f97d7605efb07b303eeba10d4a8a34485d.tar.bz2 |
[svn-r29030] Cleanup of test/externals before merging user patch.
Tested on: 64-bit Ubuntu 15.10 (Linux 4.2.0 x86_64) gcc 5.2.1
serial autotools
Diffstat (limited to 'src')
-rw-r--r-- | src/H5private.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/H5private.h b/src/H5private.h index c78e72c..74763a5 100644 --- a/src/H5private.h +++ b/src/H5private.h @@ -1255,7 +1255,9 @@ typedef off_t h5_stat_size_t; #ifndef HDsnprintf #define HDsnprintf snprintf /*varargs*/ #endif /* HDsnprintf */ -/* sprintf() variable arguments */ +#ifndef HDsprintf + #define HDsprintf sprintf /*varargs*/ +#endif /* HDsprintf */ #ifndef HDsqrt #define HDsqrt(X) sqrt(X) #endif /* HDsqrt */ |