mirror of
https://github.com/autc04/Retro68.git
synced 2025-01-13 01:30:55 +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);
|
|
}
|