mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-09 17:38:00 +00:00
7958a63147
they're for. [originally from svn r6639]
27 lines
284 B
C
27 lines
284 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(macintosh)
|
|
|
|
#include "macstuff.h"
|
|
|
|
#elif defined(MACOSX)
|
|
|
|
#include "osx.h"
|
|
|
|
#else
|
|
|
|
#include "unix.h"
|
|
|
|
#endif
|
|
|
|
#endif
|