puttyps.h 257 B

12345678910111213141516171819202122
  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. #elif defined(MACOSX)
  9. #include "osx.h"
  10. #else
  11. #include "unix.h"
  12. #endif
  13. #endif