diff options
author | Tom Musta | 2014-04-21 22:54:47 +0200 |
---|---|---|
committer | Alexander Graf | 2014-06-16 13:24:28 +0200 |
commit | 0f2d3732202818fb85c09d1c204a08c4d79b70bc (patch) | |
tree | b93575bd7f26af873cff88dddeab3c3dc9d8fac3 /include/libdecnumber/dpd/decimal64.h | |
parent | libdecnumber: Eliminate #include *Symbols.h (diff) | |
download | qemu-0f2d3732202818fb85c09d1c204a08c4d79b70bc.tar.gz qemu-0f2d3732202818fb85c09d1c204a08c4d79b70bc.tar.xz qemu-0f2d3732202818fb85c09d1c204a08c4d79b70bc.zip |
libdecnumber: Prepare libdecnumber for QEMU include structure
Consistent with other libraries in QEMU, the libdecnumber header files were
placed in include/libdecnumber, separate from the C code. This is different
from the original libdecnumber source, where they were co-located.
Change the libdecnumber source code so that it reflects this split. Specifically,
modify directives of the form:
#include "xxx.h"
to look like:
#include "libdecnumber/xxx.h"
Signed-off-by: Tom Musta <tommusta@gmail.com>
Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'include/libdecnumber/dpd/decimal64.h')
-rw-r--r-- | include/libdecnumber/dpd/decimal64.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libdecnumber/dpd/decimal64.h b/include/libdecnumber/dpd/decimal64.h index c391e254e4..2f6c049402 100644 --- a/include/libdecnumber/dpd/decimal64.h +++ b/include/libdecnumber/dpd/decimal64.h @@ -62,7 +62,7 @@ #define DECNUMDIGITS DECIMAL64_Pmax /* size if not already defined*/ #endif #ifndef DECNUMBER - #include "decNumber.h" /* context and number library */ + #include "libdecnumber/decNumber.h" #endif /* Decimal 64-bit type, accessible by bytes */ |