// cerrno standard header -*-c++-*-
// Copyright 2009-2017 IAR Systems AB.
#ifndef _CERRNO_
#define _CERRNO_

#ifndef _SYSTEM_BUILD
  #pragma system_include
#endif

#include <errno.h>

namespace std {
  #if __AEABI_PORTABILITY_INTERNAL_LEVEL
    using ::__aeabi_EDOM;   using ::__aeabi_ERANGE; using ::__aeabi_EFPOS;
    using ::__aeabi_EILSEQ; using ::__aeabi_ERRMAX;
  #endif
  #if __STDC_WANT_LIB_EXT1__ == 1
    using ::errno_t;
  #endif
} /* namespace std */
#endif /* _CERRNO_ */
/*
 * Copyright (c) by P.J. Plauger. All rights reserved.
 * Consult your license regarding permissions and restrictions.
V6.50:0576 */
