mirror of
https://github.com/cc65/cc65.git
synced 2024-10-31 20:06:11 +00:00
13 lines
163 B
C
13 lines
163 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
extern const char text[]; /* In text.s */
|
|
|
|
int main (void)
|
|
{
|
|
printf ("%s\n", text);
|
|
return EXIT_SUCCESS;
|
|
}
|
|
|
|
|