guile: mark guile entry points as extern "C" {}

Otherwise, we can't find them.
This commit is contained in:
Dirk-Jan C. Binnema 2021-02-11 18:53:09 +02:00
parent 936fd3f485
commit 2967a2e251
2 changed files with 2 additions and 3 deletions

View File

@ -27,6 +27,6 @@
*
* @return
*/
void* mu_guile_message_init (void *data);
extern "C" { void* mu_guile_message_init (void *data);}
#endif /*MU_GUILE_MESSAGE_HH__*/

View File

@ -82,6 +82,5 @@ SCM mu_guile_scm_from_str (const char *str);
*
* @return
*/
void* mu_guile_init (void *data);
extern "C" { void* mu_guile_init (void *data); }
#endif /*__MU_GUILE_H__*/