1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-10 18:07:59 +00:00
putty-source/puttyps.h

27 lines
284 B
C
Raw Normal View History

/*
* 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