The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
185 B
15 lines
185 B
4 years ago
|
#include<public_header.h>
|
||
|
#include<private_header.h>
|
||
|
|
||
|
int public_func() {
|
||
|
return round1_a();
|
||
|
}
|
||
|
|
||
|
int round1_a() {
|
||
|
return round1_b();
|
||
|
}
|
||
|
|
||
|
int round2_a() {
|
||
|
return round2_b();
|
||
|
}
|