mirror of
https://github.com/debauchee/barrier.git
synced 2026-02-09 13:15:33 +08:00
10 lines
251 B
C++
10 lines
251 B
C++
#include "stdpre.h"
|
|
#if !defined(CONFIG_PLATFORM_LINUX)
|
|
#include <ostream>
|
|
#else
|
|
// some versions of libstdc++ don't have <ostream>
|
|
// FIXME -- only include iostream for versions that don't have ostream
|
|
#include <iostream>
|
|
#endif
|
|
#include "stdpost.h"
|