Files
30dayMakeOS/tolset/z_tools/win32/errno.h
2014-09-04 15:36:35 +08:00

21 lines
313 B
C

/* copyright(C) 2003 H.Kawai (under KL-01). */
#if (!defined(ERRNO_H))
#define ERRNO_H 1
#if (defined(__cplusplus))
extern "C" {
#endif
extern int errno;
#define ENOENT 2 /* No such file or directory */
#define ERANGE 34 /* Result too large (or too small) */
#if (defined(__cplusplus))
}
#endif
#endif