1///////////////////////////////////////////////////////////////////////////////
2//
3/// \file       tuklib_open_stdxxx.h
4/// \brief      Make sure that file descriptors 0, 1, and 2 are open
5//
6//  Author:     Lasse Collin
7//
8//  This file has been put into the public domain.
9//  You can do whatever you want with this file.
10//
11///////////////////////////////////////////////////////////////////////////////
12
13#ifndef TUKLIB_OPEN_STDXXX_H
14#define TUKLIB_OPEN_STDXXX_H
15
16#include "tuklib_common.h"
17TUKLIB_DECLS_BEGIN
18
19#define tuklib_open_stdxx TUKLIB_SYMBOL(tuklib_open_stdxxx)
20extern void tuklib_open_stdxxx(int err_status);
21
22TUKLIB_DECLS_END
23#endif
24