Sign in
llvm
/
llvm-project
/
890c4bece26e005cd9fa5511fe0efa7307794de5
/
.
/
lldb
/
test
/
API
/
commands
/
expression
/
weak_symbols
/
dylib.c
blob: dc513e5c5fb52295d532e408ca18c2c9c56e7f66 [
file
]
#include
"dylib.h"
int
present_weak_int
=
10
;
int
present_weak_function
()
{
return
present_weak_int
;
}
#if defined HAS_THEM
int
absent_weak_int
=
10
;
int
absent_weak_function
()
{
return
absent_weak_int
;
}
#endif