summaryrefslogtreecommitdiff
path: root/Tests/CustomCommandByproducts/CustomCommandByproducts.c
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/CustomCommandByproducts/CustomCommandByproducts.c')
-rw-r--r--Tests/CustomCommandByproducts/CustomCommandByproducts.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/Tests/CustomCommandByproducts/CustomCommandByproducts.c b/Tests/CustomCommandByproducts/CustomCommandByproducts.c
index 02ad7ea0b..0658d0518 100644
--- a/Tests/CustomCommandByproducts/CustomCommandByproducts.c
+++ b/Tests/CustomCommandByproducts/CustomCommandByproducts.c
@@ -6,10 +6,11 @@ extern int byproduct5(void);
extern int byproduct6(void);
extern int byproduct7(void);
extern int byproduct8(void);
+extern int byproduct9(void);
extern int ExternalLibrary(void);
int main(void)
{
return (byproduct1() + byproduct2() + byproduct3() + byproduct4() +
byproduct5() + byproduct6() + byproduct7() + byproduct8() +
- ExternalLibrary() + 0);
+ byproduct9() + ExternalLibrary() + 0);
}