CustomCommandByproducts.c 480 B

1234567891011121314151617181920212223
  1. extern int byproduct1(void);
  2. extern int byproduct2(void);
  3. extern int byproduct3(void);
  4. extern int byproduct4(void);
  5. extern int byproduct5(void);
  6. extern int byproduct6(void);
  7. extern int byproduct7(void);
  8. extern int byproduct8(void);
  9. extern int ExternalLibrary(void);
  10. int main(void)
  11. {
  12. return (
  13. byproduct1() +
  14. byproduct2() +
  15. byproduct3() +
  16. byproduct4() +
  17. byproduct5() +
  18. byproduct6() +
  19. byproduct7() +
  20. byproduct8() +
  21. ExternalLibrary() +
  22. 0);
  23. }