mirror of
https://github.com/encounter/oot-gc.git
synced 2026-03-30 11:33:44 -07:00
14 lines
170 B
C
14 lines
170 B
C
#ifndef _ERRNO_H_
|
|
#define _ERRNO_H_
|
|
|
|
extern int errno;
|
|
|
|
#define ENOERR 0
|
|
#define EDOM 33
|
|
#define ERANGE 34
|
|
#define ESIGPARM 36
|
|
#define EFPOS 40
|
|
#define EILSEQ 84
|
|
|
|
#endif
|