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