mirror of
https://github.com/cc65/cc65.git
synced 2024-12-23 19:29:37 +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;
|
||
|
}
|