Revert "[ELF] Refine isExported/isPreemptible condition"
[llvm-project.git] / lldb / test / API / lang / cpp / extern_c / main.cpp
blob727ea9255ca7ff83df3ffb0be6ad9b7c45e79361
1 #include <stdio.h>
2 #include <stdint.h>
4 extern "C"
6 int foo();
7 };
9 int foo()
11 puts("foo");
12 return 2;
15 int main (int argc, char const *argv[], char const *envp[])
17 foo();
18 return 0; //% self.expect("expression -- foo()", substrs = ['2'])