home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / snip9707.zip / TC15.H < prev    next >
C/C++ Source or Header  |  1997-07-05  |  394b  |  20 lines

  1. /* +++Date last modified: 05-Jul-1997 */
  2.  
  3. /*
  4. **  SNIPPETS doesn't support many older compilers, but it's easy to add
  5. **  compiler or version specific header to make things portable. Here's
  6. **  a sample header for Turbo C 1.5.
  7. */
  8.  
  9. #ifndef TC15__H
  10. #define TC15__H
  11.  
  12. #include "clock.h"
  13. #include "strftime.h"
  14.  
  15. #define signal ssignal
  16.  
  17. #define FILENAME_MAX 80
  18.  
  19. #endif /* TC15__H */
  20.