diff options
author | Trevor Saunders <tbsaunde+binutils@tbsaunde.org> | 2016-06-03 23:11:46 -0400 |
---|---|---|
committer | Trevor Saunders <tbsaunde+binutils@tbsaunde.org> | 2016-06-22 12:59:58 -0400 |
commit | 6b4778968b298715ba78208bf047d72243961d49 (patch) | |
tree | cef486f88b7be7be7cc7d7b168d1b78c9d1ddbb2 /include/elf/dlx.h | |
parent | 96037eb0b8c22e0b080863362bee4a4f6fc476ed (diff) | |
download | binutils-6b4778968b298715ba78208bf047d72243961d49.zip binutils-6b4778968b298715ba78208bf047d72243961d49.tar.gz binutils-6b4778968b298715ba78208bf047d72243961d49.tar.bz2 |
addmore extern C
opcodes/ChangeLog:
2016-06-22 Trevor Saunders <tbsaunde+binutils@tbsaunde.org>
* arc-ext.h: Wrap in extern C.
include/ChangeLog:
2016-06-22 Trevor Saunders <tbsaunde+binutils@tbsaunde.org>
* elf/dlx.h: Wrap in extern C.
* elf/xtensa.h: Likewise.
* opcode/arc.h: Likewise.
Diffstat (limited to 'include/elf/dlx.h')
-rw-r--r-- | include/elf/dlx.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/elf/dlx.h b/include/elf/dlx.h index f179d8c..8165951 100644 --- a/include/elf/dlx.h +++ b/include/elf/dlx.h @@ -22,6 +22,10 @@ #include "elf/reloc-macros.h" +#ifdef __cplusplus +extern "C" { +#endif + #if 0 START_RELOC_NUMBERS (elf_dlx_reloc_type) RELOC_NUMBER (R_DLX_NONE, 0) @@ -50,4 +54,8 @@ START_RELOC_NUMBERS (elf_dlx_reloc_type) END_RELOC_NUMBERS (R_DLX_max) #endif /* 0 */ +#ifdef __cplusplus + } +#endif + #endif /* _ELF_DLX_H */ |