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".
This commit is contained in:
H. Peter Anvin 2008-08-28 13:36:10 -07:00
parent 04f54809d2
commit 5eff8912bc

View file

@ -10,6 +10,8 @@
#ifndef NASM_FLOAT_H
#define NASM_FLOAT_H
#include "nasm.h"
enum float_round {
FLOAT_RC_NEAR,
FLOAT_RC_ZERO,