//----------------------------------------------------------------
//
// NeuroChip NM6403, C++ library
// 1997-1999 (c) RC Module Inc.
// cerrno,
//
//----------------------------------------------------------------


#ifndef	_CERRNO_Included
#define _CERRNO_Included


#define	ENOMEM		12		/* Cannot allocate memory */
#define	EFAULT		14		/* Bad address */
#define	EDOM		33		/* Numerical argument out of domain */
#define	ERANGE		34		/* Result too large */
#define	EINVAL		22		/* Invalid argument */


#endif  // _CERRNO_Included
