/* * @file: * @version: V1.01 * @purpose: * * */ #ifndef _ERRNO #define _ERRNO #ifdef __cplusplus extern "C" { #endif extern int errno; #define EDOM 1 #define ERANGE 2 #define ENOENT 3 #define EFPOS 5 #define EILSEQ 6 #define __set_errno(val) (errno = (val)) #ifdef __cplusplus } #endif #endif /* _ERRNO */