35 lines
434 B
C
35 lines
434 B
C
|
/* 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;
|
||
|
}
|
||
|
|