From: Nicolai Hähnle Date: Sun, 8 May 2016 19:53:53 +0000 (-0500) Subject: r600: protect r600_isa.h with extern "C" X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6d350fb13fff5b4fc496725cc2d771a7640e2f11;p=mesa.git r600: protect r600_isa.h with extern "C" Reviewed-by: Marek Olšák Reviewed-by: Bas Nieuwenhuizen --- diff --git a/src/gallium/drivers/r600/r600_isa.h b/src/gallium/drivers/r600/r600_isa.h index b3f49bda88e..005b580ac2c 100644 --- a/src/gallium/drivers/r600/r600_isa.h +++ b/src/gallium/drivers/r600/r600_isa.h @@ -29,6 +29,10 @@ #include "util/u_debug.h" +#ifdef __cplusplus +extern "C" { +#endif + /* ALU flags */ enum alu_op_flags { @@ -1236,4 +1240,8 @@ r600_isa_cf_by_opcode(struct r600_isa* isa, unsigned opcode, unsigned is_alu) { return op - 1; } +#ifdef __cplusplus +} /* extern "C" */ +#endif + #endif /* R600_ISA_H_ */