[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:
Quincey Koziol 2001-03-31 22:22:48 -05:00
parent 1e38134185
commit 9d597efc99

View File

@ -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)