Files
llvm-project/lldb/test/API/python_api/sbplatform/main.cpp
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
127 B
C++
Raw Normal View History

#include <cstdlib>
#include <cstdio>
int main() {
printf("MY_TEST_ENV_VAR=%s\n", getenv("MY_TEST_ENV_VAR"));
return 0;
}