2014-09-24 16:45:10 +02:00
|
|
|
/*
|
|
|
|
!!DESCRIPTION!! minimal Program, checks if the Compiler and testsuite framework works
|
|
|
|
!!ORIGIN!! testsuite
|
|
|
|
!!LICENCE!! Public Domain
|
|
|
|
!!AUTHOR!! Groepaz/Hitmen
|
|
|
|
*/
|
|
|
|
|
2014-11-22 18:28:05 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
|
2014-09-24 16:45:10 +02:00
|
|
|
int main(void)
|
|
|
|
{
|
|
|
|
#if 1
|
|
|
|
printf("it works :)\n");
|
|
|
|
#endif
|
|
|
|
return 0;
|
|
|
|
}
|