summaryrefslogtreecommitdiff
path: root/Tests/CustomCommandByproducts
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/CustomCommandByproducts')
-rw-r--r--Tests/CustomCommandByproducts/CustomCommandByproducts.c14
-rw-r--r--Tests/CustomCommandByproducts/External/ExternalLibrary.c5
-rw-r--r--Tests/CustomCommandByproducts/ProducerExe.c5
3 files changed, 11 insertions, 13 deletions
diff --git a/Tests/CustomCommandByproducts/CustomCommandByproducts.c b/Tests/CustomCommandByproducts/CustomCommandByproducts.c
index 1916427b71..02ad7ea0b8 100644
--- a/Tests/CustomCommandByproducts/CustomCommandByproducts.c
+++ b/Tests/CustomCommandByproducts/CustomCommandByproducts.c
@@ -9,15 +9,7 @@ extern int byproduct8(void);
extern int ExternalLibrary(void);
int main(void)
{
- return (
- byproduct1() +
- byproduct2() +
- byproduct3() +
- byproduct4() +
- byproduct5() +
- byproduct6() +
- byproduct7() +
- byproduct8() +
- ExternalLibrary() +
- 0);
+ return (byproduct1() + byproduct2() + byproduct3() + byproduct4() +
+ byproduct5() + byproduct6() + byproduct7() + byproduct8() +
+ ExternalLibrary() + 0);
}
diff --git a/Tests/CustomCommandByproducts/External/ExternalLibrary.c b/Tests/CustomCommandByproducts/External/ExternalLibrary.c
index a1dacf0c16..554f611cf7 100644
--- a/Tests/CustomCommandByproducts/External/ExternalLibrary.c
+++ b/Tests/CustomCommandByproducts/External/ExternalLibrary.c
@@ -1 +1,4 @@
-int ExternalLibrary(void) { return 0; }
+int ExternalLibrary(void)
+{
+ return 0;
+}
diff --git a/Tests/CustomCommandByproducts/ProducerExe.c b/Tests/CustomCommandByproducts/ProducerExe.c
index 78f2de106c..8488f4e58f 100644
--- a/Tests/CustomCommandByproducts/ProducerExe.c
+++ b/Tests/CustomCommandByproducts/ProducerExe.c
@@ -1 +1,4 @@
-int main(void) { return 0; }
+int main(void)
+{
+ return 0;
+}