summaryrefslogtreecommitdiffstats
path: root/test cases/rust/12 bindgen/dependencies/clib2.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--test cases/rust/12 bindgen/dependencies/clib2.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/test cases/rust/12 bindgen/dependencies/clib2.c b/test cases/rust/12 bindgen/dependencies/clib2.c
new file mode 100644
index 0000000..63d3e0a
--- /dev/null
+++ b/test cases/rust/12 bindgen/dependencies/clib2.c
@@ -0,0 +1,5 @@
+#include "internal_dep.h"
+
+int64_t add64(const int64_t first, const int64_t second) {
+ return first + second;
+}