merge from gcc
This commit is contained in:
parent
adc427c786
commit
0adbbe4a71
|
@ -1,3 +1,8 @@
|
|||
2009-10-19 Rafael Avila de Espindola <espindola@google.com>
|
||||
|
||||
PR40790
|
||||
* plugin-api.h: Don't include stdint.h unconditionally.
|
||||
|
||||
2009-10-15 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
* include/dwarf2.h (DW_LANG_Python): Add comment that it is
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue