fix missing symbol on OS X

This commit is contained in:
Paul Davis 2016-01-07 10:39:44 -05:00
parent 34244b3c69
commit d735145969

View File

@ -195,7 +195,13 @@ int have_libjack(void);
#endif
// prototype for function currently only available in jack1 headers
int jack_port_rename (jack_client_t* client, jack_port_t *port, const char *port_name);
#ifdef __cplusplus
extern "C" {
#endif
int jack_port_rename (jack_client_t* client, jack_port_t *port, const char *port_name);
#ifdef __cplusplus
}
#endif
#ifdef USE_WEAK_JACK