mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-03-13 17:57:12 +08:00
float.c: mark read_exponent() static
read_exponent() is not used outside float.c; mark static
This commit is contained in:
parent
37d88e4125
commit
3514ad0e6c
2
float.c
2
float.c
@ -116,7 +116,7 @@ static int float_multiply(uint16_t * to, uint16_t * from)
|
||||
* read an exponent; returns INT32_MAX on error
|
||||
* ---------------------------------------------------------------------------
|
||||
*/
|
||||
int32_t read_exponent(const char *string, int32_t max)
|
||||
static int32_t read_exponent(const char *string, int32_t max)
|
||||
{
|
||||
int32_t i = 0;
|
||||
bool neg = false;
|
||||
|
Loading…
x
Reference in New Issue
Block a user