Luna/libc/include/errno.h

12 lines
212 B
C
Raw Normal View History

/* errno.h: Error management header. */
#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