lyx_mirror/src/support/os.C

20 lines
396 B
C++
Raw Normal View History

/**
* \file os.C
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author Ruurd A. Reitsma
*
* Full author contact details are available in file CREDITS.
*/
#include <config.h>
#if defined(__CYGWIN__) || defined(__CYGWIN32__)
#include "os_cygwin.C"
#elif defined(_WIN32)
#include "os_win32.C"
#else
#include "os_unix.C"
#endif