#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__*/