/* * GKlib.h * * George's library of most frequently used routines * * $Id: GKlib.h 13005 2012-10-23 22:34:36Z karypis $ * */ #ifndef _GKLIB_H_ #define _GKLIB_H_ 1 #define GKMSPACE #if defined(_MSC_VER) #define __MSC__ #endif #if defined(__ICC) #define __ICC__ #endif #include "gk_arch.h" /*!< This should be here, prior to the includes */ /************************************************************************* * Header file inclusion section **************************************************************************/ #include <stddef.h> #include <stdlib.h> #include <stdarg.h> #include <stdio.h> #include <errno.h> #include <ctype.h> #include <math.h> #include <float.h> #include <time.h> #include <string.h> #include <limits.h> #include <signal.h> #include <setjmp.h> #include <assert.h> #include <sys/stat.h> #if defined(__WITHPCRE__) #include <pcreposix.h> #else #if defined(USE_GKREGEX) #include "gkregex.h" #else #include <regex.h> #endif /* defined(USE_GKREGEX) */ #endif /* defined(__WITHPCRE__) */ #if defined(__OPENMP__) #include <omp.h> #endif #include <gk_types.h> #include <gk_struct.h> #include <gk_externs.h> #include <gk_defs.h> #include <gk_macros.h> #include <gk_getopt.h> #include <gk_mksort.h> #include <gk_mkblas.h> #include <gk_mkmemory.h> #include <gk_mkpqueue.h> #include <gk_mkpqueue2.h> #include <gk_mkrandom.h> #include <gk_mkutils.h> #include <gk_proto.h> #endif /* GKlib.h */