Rename math.c/mymath.h to fixpoint.c/.h

This also changes the functions' prefix
from "math_" to "fix_".
This commit is contained in:
Rangi
2021-02-28 16:30:48 -05:00
committed by Eldred Habert
parent 76d8862900
commit 0774f5eb9d
8 changed files with 221 additions and 221 deletions

View File

@@ -18,10 +18,10 @@
#include <string.h>
#include <time.h>
#include "asm/fixpoint.h"
#include "asm/fstack.h"
#include "asm/macro.h"
#include "asm/main.h"
#include "asm/mymath.h"
#include "asm/output.h"
#include "asm/section.h"
#include "asm/symbol.h"
@@ -775,5 +775,5 @@ void sym_Init(time_t now)
_PISymbol->src = NULL;
_PISymbol->fileLine = 0;
_PISymbol->hasCallback = true;
_PISymbol->numCallback = math_Callback_PI;
_PISymbol->numCallback = fix_Callback_PI;
}