diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2010-07-20 15:29:38 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2010-07-20 15:29:38 (GMT) |
commit | c00ba4b1229c79aacf041678a9c667dad2791784 (patch) | |
tree | 355cf0be823410eedde7bd65fa463fc92736c57e /config/cmake/GetTimeOfDayTest.cpp | |
parent | a67794b1bc35421f1267133a6f7b447db2a71a3a (diff) | |
download | hdf5-c00ba4b1229c79aacf041678a9c667dad2791784.zip hdf5-c00ba4b1229c79aacf041678a9c667dad2791784.tar.gz hdf5-c00ba4b1229c79aacf041678a9c667dad2791784.tar.bz2 |
[svn-r19107] Move Resources folder to config/cmake
Tested: Local Linux
Diffstat (limited to 'config/cmake/GetTimeOfDayTest.cpp')
-rw-r--r-- | config/cmake/GetTimeOfDayTest.cpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/config/cmake/GetTimeOfDayTest.cpp b/config/cmake/GetTimeOfDayTest.cpp new file mode 100644 index 0000000..3b5bf60 --- /dev/null +++ b/config/cmake/GetTimeOfDayTest.cpp @@ -0,0 +1,15 @@ +#if defined (TRY_SYS_TIME_H) +#include <sys/time.h> +/* #include <time.h> */ +#endif + + +#if defined (TRY_TIME_H) +#include <time.h> +#endif + +int main(int argc, char **argv) { + struct timeval t1; + gettimeofday(&t1, 0x00); + return 0; +} |