1207753Smm///////////////////////////////////////////////////////////////////////////////
2207753Smm//
3207753Smm/// \file       tuklib_open_stdxxx.h
4207753Smm/// \brief      Make sure that file descriptors 0, 1, and 2 are open
5207753Smm//
6207753Smm//  Author:     Lasse Collin
7207753Smm//
8207753Smm//  This file has been put into the public domain.
9207753Smm//  You can do whatever you want with this file.
10207753Smm//
11207753Smm///////////////////////////////////////////////////////////////////////////////
12207753Smm
13207753Smm#ifndef TUKLIB_OPEN_STDXXX_H
14207753Smm#define TUKLIB_OPEN_STDXXX_H
15207753Smm
16207753Smm#include "tuklib_common.h"
17207753SmmTUKLIB_DECLS_BEGIN
18207753Smm
19207753Smm#define tuklib_open_stdxx TUKLIB_SYMBOL(tuklib_open_stdxxx)
20207753Smmextern void tuklib_open_stdxxx(int err_status);
21207753Smm
22207753SmmTUKLIB_DECLS_END
23207753Smm#endif
24