testLib9ObjIface.c 274 B

1234567891011
  1. /* Duplicate symbols from other sources to verify that this source
  2. is not included when the object library is used. */
  3. int testLib9ObjMissing(void);
  4. int testLib9ObjPub(void)
  5. {
  6. return testLib9ObjMissing();
  7. }
  8. int testLib9ObjPriv(void)
  9. {
  10. return testLib9ObjMissing();
  11. }