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