1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-07 07:29:33 +00:00
cc65/test/ref/minimal.c
2014-09-25 21:38:34 +02:00

15 lines
263 B
C

/*
!!DESCRIPTION!! minimal Program, checks if the Compiler and testsuite framework works
!!ORIGIN!! testsuite
!!LICENCE!! Public Domain
!!AUTHOR!! Groepaz/Hitmen
*/
int main(void)
{
#if 1
printf("it works :)\n");
#endif
return 0;
}