puttyps.h 212 B

123456789101112131415161718
  1. /*
  2. * Find the platform-specific header for this platform.
  3. */
  4. #ifndef PUTTY_PUTTYPS_H
  5. #define PUTTY_PUTTYPS_H
  6. #ifdef _WINDOWS
  7. #include "winstuff.h"
  8. #else
  9. #include "unix.h"
  10. #endif
  11. #endif