etnaviv: isa: Make header C++ safe

Signed-off-by: Christian Gmeiner <cgmeiner@igalia.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/28869>
This commit is contained in:
Christian Gmeiner 2024-04-23 09:42:23 +02:00 committed by Marge Bot
parent 15a784689e
commit 0ce255a9f6

View file

@ -10,6 +10,14 @@
struct etna_inst;
#ifdef __cplusplus
extern "C" {
#endif
void isa_assemble_instruction(uint32_t *out, const struct etna_inst *instr);
#ifdef __cplusplus
}
#endif
#endif /* _ISA_H_ */