mirror of
https://github.com/autc04/Retro68.git
synced 2025-01-17 13:31:33 +00:00
15 lines
135 B
C
15 lines
135 B
C
#include <stdio.h>
|
|
|
|
extern void foo(char);
|
|
|
|
void baz(int i)
|
|
{
|
|
printf ("baz: %d\n", i);
|
|
}
|
|
|
|
int main(void)
|
|
{
|
|
foo(42);
|
|
return 0;
|
|
}
|