tuklib_open_stdxxx.h 647 B

123456789101112131415161718192021222324
  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. #ifndef TUKLIB_OPEN_STDXXX_H
  13. #define TUKLIB_OPEN_STDXXX_H
  14. #include "tuklib_common.h"
  15. TUKLIB_DECLS_BEGIN
  16. #define tuklib_open_stdxx TUKLIB_SYMBOL(tuklib_open_stdxxx)
  17. extern void tuklib_open_stdxxx(int err_status);
  18. TUKLIB_DECLS_END
  19. #endif