summaryrefslogtreecommitdiff
path: root/test cases/common/88 dep fallback/subprojects/boblib/bob.c
blob: 52cf4795ee99014e8d10f20dbfd1ae1022920d0a (plain)
1
2
3
4
5
6
7
8
#include"bob.h"

#ifdef _MSC_VER
__declspec(dllexport)
#endif
const char* get_bob(void) {
    return "bob";
}