join.cxx 368 B

12345678910111213141516171819
  1. #if SCANNING_CONTROL
  2. # if SCAN_AT_TARGET_LEVEL
  3. # ifndef CMAKE_SCANNED_THIS_SOURCE
  4. # error "This file should have been scanned"
  5. # endif
  6. # else
  7. # ifdef CMAKE_SCANNED_THIS_SOURCE
  8. # error "This file should not have been scanned"
  9. # endif
  10. # endif
  11. #endif
  12. int scanned_file();
  13. int never_scan();
  14. int join()
  15. {
  16. return scanned_file() + never_scan();
  17. }