From 5eff8912bcaede2183c6cca08df9c8535b574ad0 Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Thu, 28 Aug 2008 13:36:10 -0700 Subject: [PATCH] Include "nasm.h" in "float.h" "float.h" references efunc, so it needs "nasm.h". It also has uint8_t and so need , but that's part of "nasm.h". --- float.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/float.h b/float.h index 40305bc1..74fd738d 100644 --- a/float.h +++ b/float.h @@ -10,6 +10,8 @@ #ifndef NASM_FLOAT_H #define NASM_FLOAT_H +#include "nasm.h" + enum float_round { FLOAT_RC_NEAR, FLOAT_RC_ZERO,