diff options
Diffstat (limited to 'tests/tcg/s390x/hello-s390x.c')
-rw-r--r-- | tests/tcg/s390x/hello-s390x.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/tcg/s390x/hello-s390x.c b/tests/tcg/s390x/hello-s390x.c new file mode 100644 index 0000000000..3dc0a05f2b --- /dev/null +++ b/tests/tcg/s390x/hello-s390x.c @@ -0,0 +1,7 @@ +#include <unistd.h> + +int main(void) +{ + write(1, "hello\n", 6); + return 0; +} |