Skip to content
This repository was archived by the owner on Aug 31, 2021. It is now read-only.

Commit 185b546

Browse files
Export the "getXtable" function from externals
1 parent 0cfa253 commit 185b546

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libexternal/include/revolution/external.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -475,7 +475,7 @@ extern Bool SecurityCanAccessLibrary(const char *p_library);
475475
#ifdef __cplusplus
476476

477477
#define EXTERNAL_REFERENCE_LIBRARY \
478-
extern "C" void getXtable(void); \
478+
extern "C" void getXtable(void) __attribute__((__visibility__("default"))); \
479479
void __dummy_function(void) \
480480
{ \
481481
getXtable(); \
@@ -484,7 +484,7 @@ extern Bool SecurityCanAccessLibrary(const char *p_library);
484484
#else
485485

486486
#define EXTERNAL_REFERENCE_LIBRARY \
487-
void getXtable(void); \
487+
void getXtable(void) __attribute__((__visibility__("default"))); \
488488
void __dummy_function(void) \
489489
{ \
490490
getXtable(); \

0 commit comments

Comments
 (0)