aboutsummaryrefslogtreecommitdiffstats
path: root/meson/test cases/common/95 manygen/depuser.c
diff options
context:
space:
mode:
Diffstat (limited to 'meson/test cases/common/95 manygen/depuser.c')
-rw-r--r--meson/test cases/common/95 manygen/depuser.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/meson/test cases/common/95 manygen/depuser.c b/meson/test cases/common/95 manygen/depuser.c
new file mode 100644
index 000000000..1ab248748
--- /dev/null
+++ b/meson/test cases/common/95 manygen/depuser.c
@@ -0,0 +1,8 @@
+#include"gen_func.h"
+
+int main(void) {
+ unsigned int i = (unsigned int) gen_func_in_lib();
+ unsigned int j = (unsigned int) gen_func_in_obj();
+ unsigned int k = (unsigned int) gen_func_in_src();
+ return (int)(i + j + k);
+}