diff options
author | Ben Elliston <bje@au.ibm.com> | 2009-04-01 00:51:55 +0000 |
---|---|---|
committer | Ben Elliston <bje@gcc.gnu.org> | 2009-04-01 11:51:55 +1100 |
commit | 9daa490df62bde7a1e310e83f903103251370536 (patch) | |
tree | c793b568f929278aa346307562f966514176d519 /libdecnumber/decContext.h | |
parent | 0ecca4d11ffc8dfd994a01035bad59ea0a062d11 (diff) | |
download | gcc-9daa490df62bde7a1e310e83f903103251370536.tar.gz |
* decContext.h: Include gstdint.h instead of <stdint.h>.
From-SVN: r145385
Diffstat (limited to 'libdecnumber/decContext.h')
-rw-r--r-- | libdecnumber/decContext.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libdecnumber/decContext.h b/libdecnumber/decContext.h index 70effd80083..02061614bf8 100644 --- a/libdecnumber/decContext.h +++ b/libdecnumber/decContext.h @@ -56,9 +56,7 @@ #define DECCFULLNAME "Decimal Context Descriptor" /* Verbose name */ #define DECCAUTHOR "Mike Cowlishaw" /* Who to blame */ - #if !defined(int32_t) - #include <stdint.h> /* C99 standard integers */ - #endif + #include "gstdint.h" /* C99 standard integers */ #include <stdio.h> /* for printf, etc. */ #include <signal.h> /* for traps */ |