summaryrefslogtreecommitdiff
path: root/tests/projects/linux/driver/hello_makefile/src/add.c
diff options
context:
space:
mode:
authorruki <[email protected]>2021-12-11 11:10:20 +0800
committerruki <[email protected]>2021-12-11 11:10:20 +0800
commit6c4c605b19b38bc34fa3a09e2087e11fe2103484 (patch)
treed9567fae5b0439f51a4142eb5a570c4756e4d8ab /tests/projects/linux/driver/hello_makefile/src/add.c
parent76d2f0f84976180935865f3f125ecc8c8b57bd7d (diff)
add hello_makefile
Diffstat (limited to 'tests/projects/linux/driver/hello_makefile/src/add.c')
-rw-r--r--tests/projects/linux/driver/hello_makefile/src/add.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/projects/linux/driver/hello_makefile/src/add.c b/tests/projects/linux/driver/hello_makefile/src/add.c
new file mode 100644
index 000000000..59aab4983
--- /dev/null
+++ b/tests/projects/linux/driver/hello_makefile/src/add.c
@@ -0,0 +1,3 @@
+int add(int a, int b) {
+ return a + b;
+}