00001 /* 00002 * Copyright 1997, Regents of the University of Minnesota 00003 * 00004 * stdheaders.h 00005 * 00006 * This file includes all necessary header files 00007 * 00008 * Started 8/27/94 00009 * George 00010 * 00011 * $Id: stdheaders.h 5993 2009-01-07 02:09:57Z karypis $ 00012 */ 00013 00014 #ifndef _LIBMETIS_STDHEADERS_H_ 00015 #define _LIBMETIS_STDHEADERS_H_ 00016 00017 #include <stdio.h> 00018 #ifdef __STDC__ 00019 #include <stdlib.h> 00020 #else 00021 #include <malloc.h> 00022 #endif 00023 #include <string.h> 00024 #include <ctype.h> 00025 #include <math.h> 00026 #include <stdarg.h> 00027 #include <time.h> 00028 00029 #endif