2003-06-18 09:56:10 +00:00
|
|
|
/**
|
|
|
|
* \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
|
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
* Full author contact details are available in file CREDITS.
|
2003-06-18 09:56:10 +00:00
|
|
|
*/
|
|
|
|
|
2002-11-04 00:15:56 +00:00
|
|
|
#include <config.h>
|
|
|
|
|
2001-05-17 15:11:01 +00:00
|
|
|
#ifdef __EMX__
|
|
|
|
#include "os_os2.C"
|
2004-12-14 12:29:53 +00:00
|
|
|
#elif defined(__CYGWIN__) || defined(__CYGWIN32__) || defined(_WIN32)
|
2001-05-17 15:11:01 +00:00
|
|
|
#include "os_win32.C"
|
|
|
|
#else
|
|
|
|
#include "os_unix.C"
|
|
|
|
#endif
|