diff options
author | H. Peter Anvin <hpa@zytor.com> | 2008-06-09 17:40:16 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2008-06-09 17:40:16 -0700 |
commit | fcb8909749b2a159ba7f32fec7df8e465a974f77 (patch) | |
tree | 59a257a1d223ca0ed0f3e410830b0cc8544804d0 /output | |
parent | 35d620d2fdd6bfb1502c7db60ad8331edf74354e (diff) | |
download | nasm-fcb8909749b2a159ba7f32fec7df8e465a974f77.tar.gz nasm-fcb8909749b2a159ba7f32fec7df8e465a974f77.tar.bz2 nasm-fcb8909749b2a159ba7f32fec7df8e465a974f77.zip |
Move all the RAA code out of nasmlib
The RAA code doesn't have to be in nasmlib; it is only used by nasm
itself, and is better handled in a separate module.
Diffstat (limited to 'output')
-rw-r--r-- | output/outaout.c | 1 | ||||
-rw-r--r-- | output/outas86.c | 1 | ||||
-rw-r--r-- | output/outcoff.c | 1 | ||||
-rw-r--r-- | output/outelf32.c | 3 | ||||
-rw-r--r-- | output/outelf64.c | 3 | ||||
-rw-r--r-- | output/outmacho.c | 1 |
6 files changed, 8 insertions, 2 deletions
diff --git a/output/outaout.c b/output/outaout.c index d0f29a6..20658ac 100644 --- a/output/outaout.c +++ b/output/outaout.c @@ -18,6 +18,7 @@ #include "nasm.h" #include "nasmlib.h" #include "saa.h" +#include "raa.h" #include "stdscan.h" #include "outform.h" diff --git a/output/outas86.c b/output/outas86.c index f4d7bed..9eb6847 100644 --- a/output/outas86.c +++ b/output/outas86.c @@ -18,6 +18,7 @@ #include "nasm.h" #include "nasmlib.h" #include "saa.h" +#include "raa.h" #include "outform.h" #ifdef OF_AS86 diff --git a/output/outcoff.c b/output/outcoff.c index d8a9c8e..bbd0b57 100644 --- a/output/outcoff.c +++ b/output/outcoff.c @@ -19,6 +19,7 @@ #include "nasm.h" #include "nasmlib.h" #include "saa.h" +#include "raa.h" #include "outform.h" #if defined(OF_COFF) || defined(OF_WIN32) || defined(OF_WIN64) diff --git a/output/outelf32.c b/output/outelf32.c index 2ae387b..aae2d0d 100644 --- a/output/outelf32.c +++ b/output/outelf32.c @@ -17,9 +17,10 @@ #include "nasm.h" #include "nasmlib.h" +#include "saa.h" +#include "raa.h" #include "stdscan.h" #include "outform.h" -#include "saa.h" #ifdef OF_ELF32 diff --git a/output/outelf64.c b/output/outelf64.c index cd568c1..9393e7a 100644 --- a/output/outelf64.c +++ b/output/outelf64.c @@ -16,9 +16,10 @@ #include "nasm.h" #include "nasmlib.h" +#include "saa.h" +#include "raa.h" #include "stdscan.h" #include "outform.h" -#include "saa.h" /* Definitions in lieu of elf.h */ #define SHT_NULL 0 /* Inactive section header */ diff --git a/output/outmacho.c b/output/outmacho.c index 50cd0b4..5ac2878 100644 --- a/output/outmacho.c +++ b/output/outmacho.c @@ -21,6 +21,7 @@ #include "nasm.h" #include "nasmlib.h" #include "saa.h" +#include "raa.h" #include "outform.h" #include "compiler.h" |