You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
485 B
29 lines
485 B
/*
|
|
* Copyright 1997, Regents of the University of Minnesota
|
|
*
|
|
* stdheaders.h
|
|
*
|
|
* This file includes all necessary header files
|
|
*
|
|
* Started 8/27/94
|
|
* George
|
|
*
|
|
* $Id: stdheaders.h 5993 2009-01-07 02:09:57Z karypis $
|
|
*/
|
|
|
|
#ifndef _LIBMETIS_STDHEADERS_H_
|
|
#define _LIBMETIS_STDHEADERS_H_
|
|
|
|
#include <stdio.h>
|
|
#ifdef __STDC__
|
|
#include <stdlib.h>
|
|
#else
|
|
#include <malloc.h>
|
|
#endif
|
|
#include <string.h>
|
|
#include <ctype.h>
|
|
#include <math.h>
|
|
#include <stdarg.h>
|
|
#include <time.h>
|
|
|
|
#endif
|
|
|