]> git.sur5r.net Git - cc65/blob - test/ref/minimal.c
Merge pull request #135 from ikorb/patch1
[cc65] / test / ref / minimal.c
1 /*
2   !!DESCRIPTION!! minimal Program, checks if the Compiler and testsuite framework works
3   !!ORIGIN!!      testsuite
4   !!LICENCE!!     Public Domain
5   !!AUTHOR!!      Groepaz/Hitmen
6 */
7
8 int main(void)
9 {
10 #if 1
11     printf("it works :)\n");
12 #endif
13     return 0;
14 }