diff options
author | H. Peter Anvin <hpa@zytor.com> | 2007-10-19 14:17:51 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2007-10-19 14:17:51 -0700 |
commit | 3514ad0e6cc9d73d7fd4604bdd270e8cc78a06d4 (patch) | |
tree | adbb81902ac77d6208900136bd325f12fca4b87e /float.c | |
parent | 37d88e4125865eef3544f1ee072436fc12dbe6fb (diff) | |
download | nasm-3514ad0e6cc9d73d7fd4604bdd270e8cc78a06d4.tar.gz nasm-3514ad0e6cc9d73d7fd4604bdd270e8cc78a06d4.tar.bz2 nasm-3514ad0e6cc9d73d7fd4604bdd270e8cc78a06d4.zip |
float.c: mark read_exponent() static
read_exponent() is not used outside float.c; mark static
Diffstat (limited to 'float.c')
-rw-r--r-- | float.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |