summaryrefslogtreecommitdiffstats
path: root/Tests/CMakeOnly/LinkInterfaceLoop
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/CMakeOnly/LinkInterfaceLoop')
-rw-r--r--Tests/CMakeOnly/LinkInterfaceLoop/lib.c5
-rw-r--r--Tests/CMakeOnly/LinkInterfaceLoop/main.c5
2 files changed, 8 insertions, 2 deletions
diff --git a/Tests/CMakeOnly/LinkInterfaceLoop/lib.c b/Tests/CMakeOnly/LinkInterfaceLoop/lib.c
index fede1d6..abe3b78 100644
--- a/Tests/CMakeOnly/LinkInterfaceLoop/lib.c
+++ b/Tests/CMakeOnly/LinkInterfaceLoop/lib.c
@@ -1 +1,4 @@
-int lib(void) { return 0; }
+int lib(void)
+{
+ return 0;
+}
diff --git a/Tests/CMakeOnly/LinkInterfaceLoop/main.c b/Tests/CMakeOnly/LinkInterfaceLoop/main.c
index 78f2de1..8488f4e 100644
--- a/Tests/CMakeOnly/LinkInterfaceLoop/main.c
+++ b/Tests/CMakeOnly/LinkInterfaceLoop/main.c
@@ -1 +1,4 @@
-int main(void) { return 0; }
+int main(void)
+{
+ return 0;
+}