// cerrno standard header
#ifndef _CERRNO_
#define _CERRNO_
#include <yvals.h>

#ifdef _STD_USING
 #undef _STD_USING
 #define _CPP_STYLE_HEADER     /* for __TI_COMPILER_VERSION__ */
  #include <errno.h>
 #define _STD_USING
 #undef _CPP_STYLE_HEADER      /* for __TI_COMPILER_VERSION__ */

 #ifndef errno
  #define errno	errno
 #endif /* errno */

#else /* _STD_USING */
 #include <errno.h>

 #ifdef _GLOBAL_USING
_STD_BEGIN
  #ifndef errno
   #define errno	errno
using _CSTD errno;
  #endif /* errno */

_STD_END
 #endif /* _GLOBAL_USING */

#endif /* _CERRNO_ */
#endif /* _STD_USING */

/*
 * Copyright (c) 1992-2004 by P.J. Plauger.  ALL RIGHTS RESERVED.
 * Consult your license regarding permissions and restrictions.
V4.02:1476 */
