diff options
Diffstat (limited to 'Tests/CustomCommandByproducts/CustomCommandByproducts.c')
-rw-r--r-- | Tests/CustomCommandByproducts/CustomCommandByproducts.c | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/Tests/CustomCommandByproducts/CustomCommandByproducts.c b/Tests/CustomCommandByproducts/CustomCommandByproducts.c index 1916427..02ad7ea 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); } |