mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-09 23:40:29 +02:00
7 lines
193 B
C
7 lines
193 B
C
#ifndef GC_VISIBILITY_H_
|
|
#define GC_VISIBILITY_H_
|
|
|
|
#define GC_INTERNAL __attribute__((visibility("hidden")))
|
|
#define GC_PUBLIC __attribute__((visibility("default")))
|
|
|
|
#endif // GC_VISIBILITY_H
|