mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
12 lines
103 B
C
12 lines
103 B
C
|
#include <stdio.h>
|
||
|
|
||
|
extern void a();
|
||
|
extern void b();
|
||
|
|
||
|
int main ()
|
||
|
{
|
||
|
a();
|
||
|
b();
|
||
|
return 0;
|
||
|
}
|