diff options
author | DJ Delorie <dj@redhat.com> | 2009-10-19 18:14:24 +0000 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2009-10-19 18:14:24 +0000 |
commit | 0adbbe4a718206c36143d4d3d756e5246e087a0f (patch) | |
tree | a3dd071aa1831a86c16c9145f377071384757441 /include/plugin-api.h | |
parent | adc427c7861a5a19b16e955cfa02bf4a728e0b84 (diff) | |
download | gdb-0adbbe4a718206c36143d4d3d756e5246e087a0f.zip gdb-0adbbe4a718206c36143d4d3d756e5246e087a0f.tar.gz gdb-0adbbe4a718206c36143d4d3d756e5246e087a0f.tar.bz2 |
merge from gcc
Diffstat (limited to 'include/plugin-api.h')
-rw-r--r-- | include/plugin-api.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/plugin-api.h b/include/plugin-api.h index a026e7a..572621f 100644 --- a/include/plugin-api.h +++ b/include/plugin-api.h @@ -26,8 +26,16 @@ #ifndef PLUGIN_API_H #define PLUGIN_API_H +#ifdef HAVE_STDINT_H #include <stdint.h> +#elif defined(HAVE_INTTYPES_H) +#include <inttypes.h> +#endif #include <sys/types.h> +#if !defined(HAVE_STDINT_H) && !defined(HAVE_INTTYPES_H) && \ + !defined(UINT64_MAX) && !defined(uint64_t) +#error can not find uint64_t type +#endif #ifdef __cplusplus extern "C" |