summaryrefslogtreecommitdiffstats
path: root/test cases/common/95 manygen/depuser.c
diff options
context:
space:
mode:
Diffstat (limited to 'test cases/common/95 manygen/depuser.c')
-rw-r--r--test cases/common/95 manygen/depuser.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/test cases/common/95 manygen/depuser.c b/test cases/common/95 manygen/depuser.c
new file mode 100644
index 0000000..1ab2487
--- /dev/null
+++ b/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);
+}