1 /*
2 
3     Copyright (C) 2014, The University of Texas at Austin
4 
5     This file is part of libflame and is available under the 3-Clause
6     BSD license, which can be found in the LICENSE file at the top-level
7     directory, or at http://opensource.org/licenses/BSD-3-Clause
8 
9 */
10 
11 #ifdef FLA_ENABLE_WINDOWS_BUILD
12   #include <time.h>
13 #else
14   // Handle the results of checking for time.h and sys/time.h
15   #if TIME_WITH_SYS_TIME
16     #include <sys/time.h>
17     #include <time.h>
18   #else
19     #if HAVE_SYS_TIME_H
20       #include <sys/time.h>
21     #else
22       #include <time.h>
23     #endif
24   #endif
25 #endif
26 
27 // Handle the results of checking for ia64intrin.h. The contents of this header
28 // are required by the ia64 sections of FLA_Clock.c.
29 #ifdef HAVE_IA64INTRIN_H
30   #include <ia64intrin.h>
31 #endif
32 
33