mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-31 17:10:47 +08:00
[svn-r3743] Purpose:
Code cleanup Description: Defined snprintf macro for non-UNIX platform which needed tweak. Solution: Added extra ifdef around snprintf macro to accomodate platform. Platforms tested: FreeBSD 4.3 (hawkwind)
This commit is contained in:
parent
1e38134185
commit
9d597efc99
@ -662,7 +662,11 @@ __DLL__ int HDfprintf (FILE *stream, const char *fmt, ...);
|
||||
#define HDsinh(X) sinh(X)
|
||||
#define HDsleep(N) sleep(N)
|
||||
#ifdef H5_HAVE_SNPRINTF
|
||||
#ifdef __WATCOMC__
|
||||
# define HDsnprintf _snprintf /*varargs*/
|
||||
#else /* __WATCOMC__ */
|
||||
# define HDsnprintf snprintf /*varargs*/
|
||||
#endif /* __WATCOMC__ */
|
||||
#endif
|
||||
/* sprintf() variable arguments */
|
||||
#define HDsqrt(X) sqrt(X)
|
||||
|
Loading…
x
Reference in New Issue
Block a user