repo.or.cz
/
puttycyg-ng.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Update README.md
[puttycyg-ng.git]
/
puttyps.h
blob
d1f3c37df884dbdc96e0e63c6c6ab6d9d5f0272f
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