mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-24 12:35:55 +08:00
11 lines
223 B
C
11 lines
223 B
C
#if defined(_WIN32) || defined(__CYGWIN__)
|
|
# define ATTRIBUTES __attribute((__dllexport__))
|
|
#else
|
|
# define ATTRIBUTES
|
|
#endif
|
|
|
|
static int static_var_1;
|
|
|
|
ATTRIBUTES void fn_1 (int unused) { }
|
|
ATTRIBUTES int extern_var_1 = 0;
|