brintos

brintos / llvm-project-archived public Read only

0
0
Text · 218 B · dc513e5 Raw
15 lines · c
1#include "dylib.h"2 3int present_weak_int = 10;4int present_weak_function()5{6  return present_weak_int;7}8 9#if defined HAS_THEM10int absent_weak_int = 10;11int absent_weak_function() {12  return absent_weak_int;13}14#endif15