Sign in
llvm
/
llvm-project
/
a58dcc5e08665f2d58a28c9d4510cf94de6ed3bf
/
.
/
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