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.
This commit is contained in:
Trevor Saunders
2016-06-03 23:11:46 -04:00
parent 96037eb0b8
commit 6b4778968b
6 changed files with 42 additions and 0 deletions

View File

@ -24,6 +24,10 @@
#ifndef OPCODE_ARC_H
#define OPCODE_ARC_H
#ifdef __cplusplus
extern "C" {
#endif
#ifndef MAX_INSN_ARGS
#define MAX_INSN_ARGS 16
#endif
@ -604,4 +608,8 @@ extern const unsigned char arg_32bit_rc[MAX_INSN_ARGS + 1];
extern const unsigned char arg_32bit_u6[MAX_INSN_ARGS + 1];
extern const unsigned char arg_32bit_limm[MAX_INSN_ARGS + 1];
#ifdef __cplusplus
}
#endif
#endif /* OPCODE_ARC_H */