Files
putty-source-code/puttyps.h
2012-09-03 01:24:18 +02:00

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