summaryrefslogtreecommitdiff
path: root/tests/projects/embed/gnu-rm/hello/src/main.c
diff options
context:
space:
mode:
authorJianpeng Peng <[email protected]>2022-10-19 11:15:47 +0800
committerJianpeng Peng <[email protected]>2022-10-19 11:15:47 +0800
commitf6a1811657d2a2abc5ca6026bb340cb68942db0a (patch)
tree90e26f24189863a289d26ac2679a71a0f84c2501 /tests/projects/embed/gnu-rm/hello/src/main.c
parentd9595826e8f81ec19673adcce87e44931cf75c0f (diff)
Add rule and test project for gnu-rm.
Diffstat (limited to 'tests/projects/embed/gnu-rm/hello/src/main.c')
-rw-r--r--tests/projects/embed/gnu-rm/hello/src/main.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/projects/embed/gnu-rm/hello/src/main.c b/tests/projects/embed/gnu-rm/hello/src/main.c
new file mode 100644
index 000000000..76b1c316f
--- /dev/null
+++ b/tests/projects/embed/gnu-rm/hello/src/main.c
@@ -0,0 +1,6 @@
+int foo(int x);
+
+int main()
+{
+ return foo(1);
+}