diff options
Diffstat (limited to 'lldb/test/tools/lldb-gdbserver/main.cpp')
-rw-r--r-- | lldb/test/tools/lldb-gdbserver/main.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lldb/test/tools/lldb-gdbserver/main.cpp b/lldb/test/tools/lldb-gdbserver/main.cpp new file mode 100644 index 00000000000..3dbff671899 --- /dev/null +++ b/lldb/test/tools/lldb-gdbserver/main.cpp @@ -0,0 +1,7 @@ +#include <iostream> + +int main(int argc, char **argv) +{ + std::cout << "hello, world" << std::endl; + return 0; +} |