attempt to fix include copy
[AROS.git] / compiler / purify / test2.c
blob15007890158e84ab4d5d0d11e54e6cad553bd283
1 /*
2 Copyright © 1995-2014, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #include <stdio.h>
8 int main (int argc, char ** argv)
10 char * str;
11 int t;
13 str = "Hello world.\n";
15 printf ("%s", str);
17 printf ("argv=%p\n", argv);
19 for (t=0; t<argc; t++)
20 printf ("Arg %d: %s\n", t, argv[t]);
22 return 0;