mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-26 06:35:58 +01:00
10 lines
149 B
C
10 lines
149 B
C
#ifndef UTIL_DEFS_H
|
|
#define UTIL_DEFS_H
|
|
|
|
#ifdef __GNUC__
|
|
#define WLR_API __attribute__((visibility("default")))
|
|
#else
|
|
#define WLR_API
|
|
#endif
|
|
|
|
#endif
|