CustomCommandByproducts.c 459 B

123456789101112131415
  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 (byproduct1() + byproduct2() + byproduct3() + byproduct4() +
  13. byproduct5() + byproduct6() + byproduct7() + byproduct8() +
  14. ExternalLibrary() + 0);
  15. }