caae9e2693
git-svn-id: http://picoc.googlecode.com/svn/trunk@604 21eae674-98b7-11dd-bd71-f92a316d2d60
12 lines
88 B
C
12 lines
88 B
C
#include <stdio.h>
|
|
|
|
void fred()
|
|
{
|
|
printf("test\n");
|
|
}
|
|
|
|
void main()
|
|
{
|
|
fred();
|
|
}
|