summaryrefslogtreecommitdiff
path: root/libyasm/floatnum.c
diff options
context:
space:
mode:
authorPeter Johnson <peter@tortall.net>2003-05-05 03:42:12 +0000
committerPeter Johnson <peter@tortall.net>2003-05-05 03:42:12 +0000
commitcfc6bf0dedf4aa501937be4406ed50e6e4649a97 (patch)
tree3c2cd30be56fc3c9edb4fa552e0b180e1a0ce35a /libyasm/floatnum.c
parent959c7e1427108d4ebddf818bd6cdd149793cbc36 (diff)
downloadyasm-cfc6bf0dedf4aa501937be4406ed50e6e4649a97.tar.gz
Clean up and simplify libyasm.h options and symbol visibility:
- Move config.h and util.h from libyasm (and installed libyasm) to top level. - Move yasm_* functions from util.h to coretype.h. - Remove a number of autoconf-related YASM_*_INTERNAL options from libyasm.h. - Rename YASM_INTERNAL to YASM_LIB_INTERNAL; it now actually means what the comment describes: enables definitions that violate the yasm_* namespace. While we're at it, no longer define YASM_LIB_INTERNAL from yasm frontend, so it's closer to what a real typical libyasm-using application would look like. svn path=/trunk/yasm/; revision=944
Diffstat (limited to 'libyasm/floatnum.c')
-rw-r--r--libyasm/floatnum.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libyasm/floatnum.c b/libyasm/floatnum.c
index 13f9d9fe..cc11990a 100644
--- a/libyasm/floatnum.c
+++ b/libyasm/floatnum.c
@@ -28,10 +28,11 @@
*/
#define YASM_LIB_INTERNAL
#include "util.h"
-/*@unused@*/ RCSID("$IdPath$");
+/*@unused@*/ RCSID("$IdPath: yasm/libyasm/floatnum.c,v 1.33 2003/03/15 05:07:48 peter Exp $");
#include <ctype.h>
+#include "coretype.h"
#include "bitvect.h"
#include "file.h"