mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-14 06:57:01 +00:00
fb28ff9e2a
* systemcall.C: The "/n" in "start /min/n" makes no sense under DOS. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@9367 a592a061-630c-0410-9148-cb99ea01b6c8
20 lines
407 B
C
20 lines
407 B
C
/**
|
|
* \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>
|
|
|
|
#ifdef __EMX__
|
|
#include "os_os2.C"
|
|
#elif defined(__CYGWIN__) || defined(__CYGWIN32__) || defined(_WIN32)
|
|
#include "os_win32.C"
|
|
#else
|
|
#include "os_unix.C"
|
|
#endif
|