mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-12 03:05:37 +00:00
15 lines
113 B
C
15 lines
113 B
C
int foo[2];
|
|
int bar[2] = { -1, -1 };
|
|
|
|
int *
|
|
foo_p (void)
|
|
{
|
|
return foo;
|
|
}
|
|
|
|
int *
|
|
bar_p (void)
|
|
{
|
|
return bar;
|
|
}
|