ba237a9d91
Files correlati : Ricompilazione Demo : [ ] Commento : Aggiunti i sorgenti per Greenleaf Math Library (gfm.dll) git-svn-id: svn://10.65.10.50/trunk@10079 c028cbd2-c16b-5b4b-a496-9718f37d4682
35 lines
434 B
C
Executable File
35 lines
434 B
C
Executable File
/* void ClearMathError()
|
|
*
|
|
* ARGUMENT
|
|
* None.
|
|
*
|
|
* DESCRIPTION
|
|
* Clears wGMError to the value GM_SUCCESS.
|
|
*
|
|
* SIDE EFFECTS
|
|
* None.
|
|
*
|
|
* RETURNS
|
|
* None.
|
|
*
|
|
* POSSIBLE ERRORS
|
|
* None.
|
|
*
|
|
* AUTHOR
|
|
* Jared Levy
|
|
* Copyright (C) 1988-1990 Greenleaf Software Inc. All rights reserved.
|
|
*
|
|
* MODIFICATIONS
|
|
*
|
|
*
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include "gmsystem.h"
|
|
void ClearMathError()
|
|
{
|
|
wGMError=GM_SUCCESS;
|
|
wGMFunErrNum=0;
|
|
}
|
|
|