func1.c 164 B

1234567891011121314151617
  1. #include "lib1.h"
  2. #include "proto1.h"
  3. int func1(void)
  4. {
  5. return 1 + PROTO1;
  6. }
  7. int func2(void)
  8. {
  9. return 2 + PROTO2;
  10. }
  11. int func3(void)
  12. {
  13. return 3 + PROTO3;
  14. }