diff options
author | H. Peter Anvin <hpa@zytor.com> | 2007-04-13 20:06:41 +0000 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2007-04-13 20:06:41 +0000 |
commit | c40f89e1c2c8a6ba4b7b86148aacbc0a32bf5b57 (patch) | |
tree | e405d2b6af30d3e41a206dc8474e95da253dc653 /rdoff | |
parent | 1a4440ac5860cb410895023b28f812f2c481c041 (diff) | |
download | nasm-c40f89e1c2c8a6ba4b7b86148aacbc0a32bf5b57.tar.gz nasm-c40f89e1c2c8a6ba4b7b86148aacbc0a32bf5b57.tar.bz2 nasm-c40f89e1c2c8a6ba4b7b86148aacbc0a32bf5b57.zip |
AIf we have config.h, we should actually include it!!
Apparently configure was generating config.h, and nothing ever actually
included it. Include it in nasm.h as well as compiler.h, and in
rdoff/rdlar.h which uses these macros.
There appears to be no use of HAVE_* macros in any file that doesn't
have nasm.h included; in fact, so far the only use has been in
rdoff/rdlar.h.
Diffstat (limited to 'rdoff')
-rw-r--r-- | rdoff/rdlar.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/rdoff/rdlar.h b/rdoff/rdlar.h index 0232398..f3bec13 100644 --- a/rdoff/rdlar.h +++ b/rdoff/rdlar.h @@ -6,6 +6,7 @@ #define RDOFF_RDLAR_H 1 #include <inttypes.h> +#include "config.h" /* For non-POSIX operating systems */ #ifndef HAVE_GETUID |