summaryrefslogtreecommitdiff
path: root/lldb/test/API/functionalities/module_cache/simple_exe/main.c
blob: 51e7b0976c3b116831bfcc388c8c047afbd55d8b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifdef EXTRA_FUNCTION
int foo(int i) {
  return i*3;
}
#endif

int main (int argc, char const *argv[]) {
#ifdef EXTRA_FUNCTION
  return foo(argc);
#else
  return 0;
#endif
}