mirror of
https://git.planet-casio.com/Vhex-Kernel-Core/fxlibc.git
synced 2024-12-28 20:43:38 +01:00
5f48a6b4e0
A <bits/errno.h> file will likely by added later on for each target to add more specific values.
12 lines
251 B
C
12 lines
251 B
C
#ifndef __ERRNO_H__
|
|
# define __ERRNO_H__
|
|
|
|
/* Initialized to 0 at startup. Currently not TLS, maybe in the future if
|
|
threads are supported. */
|
|
extern int errno;
|
|
|
|
#define EDOM 1
|
|
#define EILSEQ 2
|
|
#define ERANGE 3
|
|
|
|
#endif /*__ERRNO_H__*/
|