puttyps.h 194 B

12345678910111213141516171819
  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