]> git.sur5r.net Git - cc65/blob - samples/tutorial/hello.c
Removed (pretty inconsistently used) tab chars from source code base.
[cc65] / samples / tutorial / hello.c
1 #include <stdio.h>
2 #include <stdlib.h>
3
4 extern const char text[];       /* In text.s */
5
6 int main (void)
7 {
8     printf ("%s\n", text);
9     return EXIT_SUCCESS;
10 }
11
12