diff options
Diffstat (limited to 'meson/test cases/unit/87 prelinking/file1.c')
-rw-r--r-- | meson/test cases/unit/87 prelinking/file1.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/meson/test cases/unit/87 prelinking/file1.c b/meson/test cases/unit/87 prelinking/file1.c new file mode 100644 index 000000000..9f0e26523 --- /dev/null +++ b/meson/test cases/unit/87 prelinking/file1.c @@ -0,0 +1,14 @@ +#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(); +} |