diff options
Diffstat (limited to 'packages/Python/lldbsuite/test/functionalities/object-file/bin/hello.c')
-rw-r--r-- | packages/Python/lldbsuite/test/functionalities/object-file/bin/hello.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/packages/Python/lldbsuite/test/functionalities/object-file/bin/hello.c b/packages/Python/lldbsuite/test/functionalities/object-file/bin/hello.c new file mode 100644 index 0000000..8c80400 --- /dev/null +++ b/packages/Python/lldbsuite/test/functionalities/object-file/bin/hello.c @@ -0,0 +1,8 @@ +#include <stdio.h> + +int main(int argc, char **argv) +{ + printf("Hello, world\n"); + return 0; +} + |