libostd/src/context_stack.cc

17 lines
357 B
C++
Raw Normal View History

/* Decides between POSIX and Windows for context_stack.
*
2017-04-06 20:14:52 +02:00
* This file is part of libostd. See COPYING.md for futher information.
*/
#include "ostd/platform.hh"
#ifdef OSTD_PLATFORM_WIN32
# include "src/win32/context_stack.cc"
#else
#ifdef OSTD_PLATFORM_POSIX
# include "src/posix/context_stack.cc"
#else
# error "Unsupported platform"
#endif
#endif