mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
27 lines
418 B
C
27 lines
418 B
C
/*
|
|
* 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,v 1.2 2003/07/25 14:31:45 karypis Exp $
|
|
*/
|
|
|
|
|
|
#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>
|
|
|