mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-24 10:40:48 +00:00
12 lines
190 B
C++
12 lines
190 B
C++
|
#ifdef __GNUG__
|
||
|
#pragma implementation
|
||
|
#endif
|
||
|
|
||
|
#ifdef __EMX__
|
||
|
#include "os_os2.C"
|
||
|
#elif defined(__CYGWIN__) || defined( __CYGWIN32__)
|
||
|
#include "os_win32.C"
|
||
|
#else
|
||
|
#include "os_unix.C"
|
||
|
#endif
|