Add missing extern C for r_io.h

This commit is contained in:
pancake 2017-10-16 12:38:58 +02:00
parent e97d7bd90a
commit 29a155d5d4

View File

@ -22,6 +22,10 @@
#define R_IO_UNDOS 64
#if __cplusplus
extern "C" {
#endif
R_LIB_VERSION_HEADER(r_io);
typedef struct r_io_undos_t {
@ -523,4 +527,8 @@ extern RIOPlugin r_io_plugin_ar;
extern RIOPlugin r_io_plugin_rbuf;
extern RIOPlugin r_io_plugin_winedbg;
#if __cplusplus
}
#endif
#endif