mirror of
https://github.com/cc65/cc65.git
synced 2024-10-31 20:06:11 +00:00
a6b04f6e97
Quotations that are embraced by tick marks now look better, in most fonts.
23 lines
356 B
C
23 lines
356 B
C
/*
|
|
!!DESCRIPTION!!
|
|
!!ORIGIN!! testsuite
|
|
!!LICENCE!! Public Domain
|
|
!!AUTHOR!! Johan Kotlinski
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
|
|
/*
|
|
...gives "test.c(2): Error: Variable 'foo' has unknown size" using -Cl.
|
|
Is it really unknown?
|
|
|
|
cc65 V2.13.0, SVN version: 4384
|
|
*/
|
|
|
|
int main() {
|
|
char foo[] = { 0 };
|
|
printf("it works :)\n");
|
|
|
|
return 0;
|
|
}
|