| 1234567891011121314151617181920212223242526 |
- /*
- * Find the platform-specific header for this platform.
- */
- #ifndef PUTTY_PUTTYPS_H
- #define PUTTY_PUTTYPS_H
- #ifdef _WINDOWS
- #include "winstuff.h"
- #elif defined(macintosh)
- #include "macstuff.h"
- #elif defined(MACOSX)
- #include "osx.h"
- #else
- #include "unix.h"
- #endif
- #endif
|