home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_08_02 / 8n02061a < prev    next >
Text File  |  1990-03-01  |  377b  |  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.