diff options
author | Gerald Pfeifer <gerald@pfeifer.com> | 2005-11-30 01:53:08 +0000 |
---|---|---|
committer | Gerald Pfeifer <gerald@gcc.gnu.org> | 2005-11-30 01:53:08 +0000 |
commit | da817a2fea5be30ae51d16c4817196aa748eb951 (patch) | |
tree | 9626450d1f6f976541d074e4ffcf70af6b8a8a2c /libdecnumber/decContext.c | |
parent | d2739ff50cc0778159932e0afe29ecc1ad515522 (diff) | |
download | gcc-da817a2fea5be30ae51d16c4817196aa748eb951.tar.gz |
decContext.h: Properly guard inclusion of stdint.h
* decContext.h: Properly guard inclusion of stdint.h
* decContext.c: Include config.h
* decLibrary.c: Ditto.
* decNumber.c: Ditto.
* decRound.c: Ditto.
* decUtility.c: Ditto.
* decimal32.c: Ditto.
* decimal64.c: Ditto.
* decimal128.c: Ditto.
From-SVN: r107695
Diffstat (limited to 'libdecnumber/decContext.c')
-rw-r--r-- | libdecnumber/decContext.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libdecnumber/decContext.c b/libdecnumber/decContext.c index 26a7f3bcf4a..93bc2c943d4 100644 --- a/libdecnumber/decContext.c +++ b/libdecnumber/decContext.c @@ -23,6 +23,7 @@ context structures. */ #include <string.h> /* for strcmp */ +#include "config.h" #include "decContext.h" /* context and base types */ #include "decNumberLocal.h" /* decNumber local types, etc. */ |