libflame  revision_anchor
FLA_config_check.h
Go to the documentation of this file.
00001 /*
00002 
00003     Copyright (C) 2014, The University of Texas at Austin
00004 
00005     This file is part of libflame and is available under the 3-Clause
00006     BSD license, which can be found in the LICENSE file at the top-level
00007     directory, or at http://opensource.org/licenses/BSD-3-Clause
00008 
00009 */
00010 
00011 #ifdef FLA_ENABLE_WINDOWS_BUILD
00012   #include <time.h>
00013 #else
00014   // Handle the results of checking for time.h and sys/time.h
00015   #if TIME_WITH_SYS_TIME
00016     #include <sys/time.h>
00017     #include <time.h>
00018   #else
00019     #if HAVE_SYS_TIME_H
00020       #include <sys/time.h>
00021     #else
00022       #include <time.h>
00023     #endif
00024   #endif
00025 #endif
00026 
00027 // Handle the results of checking for ia64intrin.h. The contents of this header
00028 // are required by the ia64 sections of FLA_Clock.c.
00029 #ifdef HAVE_IA64INTRIN_H
00030   #include <ia64intrin.h>
00031 #endif
00032