diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2005-10-22 18:37:56 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2005-10-22 18:37:56 (GMT) |
commit | d2f2b5090cec5a75697dd5db04ede7ee0fa6d687 (patch) | |
tree | db3c3ee7d1a601608eabbf383f36a8aa2067c47e /src/H5.c | |
parent | e3d9211fa94de3e43908368e5e313930c8cea18c (diff) | |
download | hdf5-d2f2b5090cec5a75697dd5db04ede7ee0fa6d687.zip hdf5-d2f2b5090cec5a75697dd5db04ede7ee0fa6d687.tar.gz hdf5-d2f2b5090cec5a75697dd5db04ede7ee0fa6d687.tar.bz2 |
[svn-r11598] Purpose:
Code cleanup
Description:
Take out odd definition of HDalarm() and replace with standard macro
like the rest of the library.
Platforms tested:
FreeBSD 4.11 (sleipnir)
Too minor to require h5committest
Diffstat (limited to 'src/H5.c')
-rw-r--r-- | src/H5.c | 12 |
1 files changed, 0 insertions, 12 deletions
@@ -830,18 +830,6 @@ HDvsnprintf(char *buf, size_t UNUSED size, const char *fmt, va_list ap) #endif /* H5_HAVE_VSNPRINTF */ #endif /* __PUMAGON__ */ -#ifndef H5_HAVE_ALARM -#ifdef WIN32 -unsigned int HDalarm(N) { - return 0; -} -#endif -#else -unsigned int HDalarm(unsigned int N) { - return alarm(N); -} -#endif - /*------------------------------------------------------------------------- * Function: HDfprintf |