testLib9.c 381 B

123456789101112131415
  1. #ifndef testLib9ObjPub_USED
  2. # error "testLib9ObjPub_USED not defined!"
  3. #endif
  4. #ifndef testLib9ObjPriv_USED
  5. # error "testLib9ObjPriv_USED not defined!"
  6. #endif
  7. #ifdef testLib9ObjIface_USED
  8. # error "testLib9ObjIface_USED defined but should not be!"
  9. #endif
  10. int testLib9ObjPub(void);
  11. int testLib9ObjPriv(void);
  12. int testLib9(void)
  13. {
  14. return (testLib9ObjPub() + testLib9ObjPriv());
  15. }