1
0
mirror of https://github.com/deadw00d/AROS.git synced 2025-11-23 12:17:41 +00:00
Files
AROS-v0/compiler/purify/test2.c
Matthias Rustler 2dd7a55cbf compiler: detabbed
2021-05-02 14:18:58 +02:00

23 lines
344 B
C

/*
Copyright (C) 1995-2014, The AROS Development Team. All rights reserved.
*/
#include <stdio.h>
int main (int argc, char ** argv)
{
char * str;
int t;
str = "Hello world.\n";
printf ("%s", str);
printf ("argv=%p\n", argv);
for (t=0; t<argc; t++)
printf ("Arg %d: %s\n", t, argv[t]);
return 0;
}