diff options
author | H. Peter Anvin <hpa@zytor.com> | 2008-08-28 13:36:10 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2008-08-28 13:36:10 -0700 |
commit | 5eff8912bcaede2183c6cca08df9c8535b574ad0 (patch) | |
tree | 7327e2b1d26cf5a86894608660cf5cb789d970c4 /float.h | |
parent | 04f54809d29549a2c73eddbb68f3cb76863ca26f (diff) | |
download | nasm-5eff8912bcaede2183c6cca08df9c8535b574ad0.tar.gz nasm-5eff8912bcaede2183c6cca08df9c8535b574ad0.tar.bz2 nasm-5eff8912bcaede2183c6cca08df9c8535b574ad0.zip |
Include "nasm.h" in "float.h"
"float.h" references efunc, so it needs "nasm.h".
It also has uint8_t and so need <inttypes.h>, but that's part of
"nasm.h".
Diffstat (limited to 'float.h')
-rw-r--r-- | float.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -10,6 +10,8 @@ #ifndef NASM_FLOAT_H #define NASM_FLOAT_H +#include "nasm.h" + enum float_round { FLOAT_RC_NEAR, FLOAT_RC_ZERO, |