
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$ 00012 */ 00013 00014 00015 #include <stdio.h> 00016 #include <stdlib.h> 00017 00018 /* OSX does not use malloc.h, but provides malloc functionality in stdlib.h */ 00019 #if CMK_HAS_MALLOC_H 00020 #include <malloc.h> 00021 #endif 00022 00023 #include <string.h> 00024 #include <ctype.h> 00025 #include <math.h> 00026 #include <stdarg.h> 00027 #include <limits.h> 00028 #include <time.h> 00029 #include <ampi.h> 00030
1.5.5