mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-09 17:38:00 +00:00
ffe40202a4
header file setup too.
[originally from svn r9005]
[r9004 == 7ac1f17aab
]
23 lines
235 B
C
23 lines
235 B
C
/*
|
|
* Find the platform-specific header for this platform.
|
|
*/
|
|
|
|
#ifndef PUTTY_PUTTYPS_H
|
|
#define PUTTY_PUTTYPS_H
|
|
|
|
#ifdef _WINDOWS
|
|
|
|
#include "winstuff.h"
|
|
|
|
#elif defined(MACOSX)
|
|
|
|
#include "osx.h"
|
|
|
|
#else
|
|
|
|
#include "unix.h"
|
|
|
|
#endif
|
|
|
|
#endif
|