mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-13 03:29:50 +00:00
15 lines
182 B
C
15 lines
182 B
C
|
extern int bar(void) __attribute__((__visibility__("hidden"), __const__));
|
||
|
extern void baz(int);
|
||
|
|
||
|
void foo(char c)
|
||
|
{
|
||
|
int i;
|
||
|
|
||
|
if (bar())
|
||
|
i = c;
|
||
|
else
|
||
|
i = c;
|
||
|
|
||
|
baz(i);
|
||
|
}
|