diff options
author | H. Peter Anvin <hpa@zytor.com> | 2009-06-27 22:07:33 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2009-06-27 22:07:33 -0700 |
commit | 31b707bef0af5fffe7c507089e1e281925b13aae (patch) | |
tree | 694e0784b6cf601eed73edcdde4ceb4dd2872255 /output/outbin.c | |
parent | 2b1f51f1cac1e6b7b75d226b2e01329365319d0d (diff) | |
download | nasm-31b707bef0af5fffe7c507089e1e281925b13aae.tar.gz nasm-31b707bef0af5fffe7c507089e1e281925b13aae.tar.bz2 nasm-31b707bef0af5fffe7c507089e1e281925b13aae.zip |
Move backend-specific code to output/; break out null debug stuff
Move backend-specific code into the output/ directory, and make the
null debugging backend a separate file (it certainly isn't needed for
ndisasm...)
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'output/outbin.c')
-rw-r--r-- | output/outbin.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/output/outbin.c b/output/outbin.c index fa4c9a3..fdd1788 100644 --- a/output/outbin.c +++ b/output/outbin.c @@ -58,8 +58,8 @@ #include "stdscan.h" #include "labels.h" #include "eval.h" -#include "outform.h" -#include "outlib.h" +#include "output/outform.h" +#include "output/outlib.h" #ifdef OF_BIN |