]> asedeno.scripts.mit.edu Git - PuTTY.git/blob - puttyps.h
Sprinkle some header comments in various files in an attempt to explain what
[PuTTY.git] / 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(macintosh)
13
14 #include "macstuff.h"
15
16 #elif defined(MACOSX)
17
18 #include "osx.h"
19
20 #else
21
22 #include "unix.h"
23
24 #endif
25
26 #endif