mirror of
https://github.com/autc04/Retro68.git
synced 2025-02-04 12:32:28 +00:00
12 lines
113 B
C
12 lines
113 B
C
|
#include <stdio.h>
|
||
|
|
||
|
void
|
||
|
bar ()
|
||
|
{
|
||
|
#ifdef SIZE_BIG
|
||
|
printf ("1\n");
|
||
|
printf ("2\n");
|
||
|
printf ("3\n");
|
||
|
#endif
|
||
|
}
|