mirror of
https://github.com/yourtion/30dayMakeOS.git
synced 2026-04-13 11:49:47 +08:00
21 lines
313 B
C
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
|