1 // SPDX-License-Identifier: 0BSD 2 3 /////////////////////////////////////////////////////////////////////////////// 4 // 5 /// \file tuklib_open_stdxxx.h 6 /// \brief Make sure that file descriptors 0, 1, and 2 are open 7 // 8 // Author: Lasse Collin 9 // 10 /////////////////////////////////////////////////////////////////////////////// 11 12 #ifndef TUKLIB_OPEN_STDXXX_H 13 #define TUKLIB_OPEN_STDXXX_H 14 15 #include "tuklib_common.h" 16 TUKLIB_DECLS_BEGIN 17 18 #define tuklib_open_stdxx TUKLIB_SYMBOL(tuklib_open_stdxxx) 19 extern void tuklib_open_stdxxx(int err_status); 20 21 TUKLIB_DECLS_END 22 #endif 23