home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / codelib6 / v_08_02 / 8n02061a < prev    next >
Encoding:
Text File  |  1995-11-01  |  377 b   |  32 lines

  1. *****Listing 1*****
  2.  
  3. /* h1.h */
  4.  
  5. #ifndef H1_H
  6. #define H1_H
  7. ...
  8.  
  9. #ifndef COUNT_T
  10. #define COUNT_T
  11. typedef unsigned int count;
  12. #endif
  13.  
  14. ...
  15. #endif
  16. /* h2.h */
  17.  
  18. #ifndef H2_H
  19. #define H2_H
  20. ...
  21.  
  22. #ifndef COUNT_T
  23. #define COUNT_T
  24. typedef unsigned int count;
  25. #endif
  26.  
  27. ...
  28. #endif
  29.  
  30. #include "h1.h"        /* count defined */
  31. #include "h2.h"        /* count not redefined */
  32.