- Set a default PCM volume so that something can be heard when driver is
[AROS.git] / compiler / purify / test2.c
blob606ea39a46727d7b9a1d01a92829fdc1b2775e56
1 #include <stdio.h>
3 int main (int argc, char ** argv)
5 char * str;
6 int t;
8 str = "Hello world.\n";
10 printf ("%s", str);
12 printf ("argv=%p\n", argv);
14 for (t=0; t<argc; t++)
15 printf ("Arg %d: %s\n", t, argv[t]);
17 return 0;