diff options
| author | ruki <[email protected]> | 2021-12-22 22:40:40 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2021-12-22 22:40:40 +0800 |
| commit | af1618680f6ed2f90accafc534ffdfc7caf2f078 (patch) | |
| tree | a2f8325aae688e37eed340713cbc5f46f87143db /tests/projects/linux/driver/hello_custom/src/add.c | |
| parent | 4ec129f7b917c222c4c20838acef80315eb85adf (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.c | 3 |
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; +} |
