Sebastian Kuschel reports that pfd_closing can be called for a socket
[u/mdw/putty] / puttyps.h
1 /*
2 * Find the platform-specific header for this platform.
3 */
4
5 #ifndef PUTTY_PUTTYPS_H
6 #define PUTTY_PUTTYPS_H
7
8 #ifdef _WINDOWS
9
10 #include "winstuff.h"
11
12 #elif defined(MACOSX)
13
14 #include "osx.h"
15
16 #else
17
18 #include "unix.h"
19
20 #endif
21
22 #endif