1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-07 23:29:39 +00:00
cc65/test/val/bug1933.c

10 lines
149 B
C
Raw Normal View History

2022-11-28 05:26:47 +00:00
/* bug #1933 - wrong printf specifier breaks data lines */
unsigned char info_signature[3] = {3, 21, 63 | 0x80};
int main(void)
{
return 0;
2022-11-28 05:34:05 +00:00
}