dylib.c 218 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 #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