/* errno.h: Error management. */

#ifndef _ERRNO_H
#define _ERRNO_H

/* The last error encountered after a call to a system or library function. */
extern int errno;

#include <luna/SystemError.h>

#endif