dos.library: Fix C:AddDataTypes on OS 3.9
[AROS.git] / test / helloworld.c
blob6fb031e47ecca377705928b9d5f013ebe92759e0
1 /*
2 Copyright © 1995-96, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: most simple demo for AROS
6 Lang: english
7 */
8 #include <stdio.h>
10 static const char version[] = "$VER: helloworld 41.1 (14.3.1997)\n";
12 int main (int argc, char ** argv)
14 printf ("Hello, world\n");
15 return 0;