mirror of
https://github.com/cc65/cc65.git
synced 2024-11-19 06:31:31 +00:00
8 lines
117 B
C
8 lines
117 B
C
/* too big for internal integer representation */
|
|
unsigned long huge = 4294967296;
|
|
|
|
int main(void)
|
|
{
|
|
return 0;
|
|
}
|