summaryrefslogtreecommitdiff
path: root/tests/projects/embed/gnu-rm/hello/src
diff options
context:
space:
mode:
authorJianpeng Peng <[email protected]>2022-10-19 15:00:37 +0800
committerJianpeng Peng <[email protected]>2022-10-19 15:00:37 +0800
commitfa425b0c71e333276f94fa11f216b23a2de5a23b (patch)
tree6130d1b0e8783d8188ee732eb324dc7d912d9d34 /tests/projects/embed/gnu-rm/hello/src
parentf6a1811657d2a2abc5ca6026bb340cb68942db0a (diff)
Format the code and follow the coding conventions.
Diffstat (limited to 'tests/projects/embed/gnu-rm/hello/src')
-rw-r--r--tests/projects/embed/gnu-rm/hello/src/foo/foo.c2
-rw-r--r--tests/projects/embed/gnu-rm/hello/src/main.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/projects/embed/gnu-rm/hello/src/foo/foo.c b/tests/projects/embed/gnu-rm/hello/src/foo/foo.c
index a962f560c..e652e68d0 100644
--- a/tests/projects/embed/gnu-rm/hello/src/foo/foo.c
+++ b/tests/projects/embed/gnu-rm/hello/src/foo/foo.c
@@ -1,4 +1,4 @@
int foo(int x)
{
- return x;
+ return x;
}
diff --git a/tests/projects/embed/gnu-rm/hello/src/main.c b/tests/projects/embed/gnu-rm/hello/src/main.c
index 76b1c316f..fd2fade43 100644
--- a/tests/projects/embed/gnu-rm/hello/src/main.c
+++ b/tests/projects/embed/gnu-rm/hello/src/main.c
@@ -2,5 +2,5 @@ int foo(int x);
int main()
{
- return foo(1);
+ return foo(1);
}