43 lines
1.2 KiB
C
43 lines
1.2 KiB
C
/*
|
|
------------------------------------------------------------------------------------------
|
|
HEADER FILE FOR :
|
|
Option for MTH Module
|
|
------------------------------------------------------------------------------------------
|
|
File Name :
|
|
Mth_Opt.h
|
|
------------------------------------------------------------------------------------------
|
|
Creation :
|
|
* Date :
|
|
February 18,1997
|
|
* Author :
|
|
Albert Pais
|
|
------------------------------------------------------------------------------------------
|
|
Contents :
|
|
This files defines main option for the mathematical module
|
|
------------------------------------------------------------------------------------------
|
|
Modification :
|
|
* Date :
|
|
* Author :
|
|
* Modify :
|
|
------------------------------------------------------------------------------------------
|
|
*/
|
|
#if !defined(__MTHOPT_H__)
|
|
#define __MTHOPT_H__
|
|
|
|
/* For fatal errors :*/
|
|
#define __FATAL_ERR_MTH__
|
|
/* #undef __FATAL_ERR_MTH__*/
|
|
|
|
/* for warning errors :*/
|
|
#define __WARNING_ERR_MTH__
|
|
/*#undef __WARNING_ERR_MTH__*/
|
|
|
|
/* for static/dynamic memory management :*/
|
|
/*#define MODE_STATIC_MEM_FOR_MTH*/
|
|
#undef MODE_STATIC_MEM_FOR_MTH
|
|
|
|
/* debug/Ndebug mode :*/
|
|
#define MTH_M_DEBUG
|
|
/*#undef MTH_M_DEBUG*/
|
|
#endif
|