A.h 136 B

1234567
  1. // This header should not be compiled directly but through inclusion
  2. // in A.cxx through A.hh.
  3. extern int A();
  4. int A()
  5. {
  6. return 10;
  7. }