2023-01-07 10:39:15 +00:00
|
|
|
/* errno.h: Error management. */
|
2023-01-06 19:02:07 +00:00
|
|
|
|
2023-01-06 16:35:07 +00:00
|
|
|
#ifndef _ERRNO_H
|
|
|
|
#define _ERRNO_H
|
|
|
|
|
2023-01-06 19:02:07 +00:00
|
|
|
/* The last error encountered after a call to a system or library function. */
|
2023-01-06 16:35:07 +00:00
|
|
|
extern int errno;
|
|
|
|
|
|
|
|
#include <luna/SystemError.h>
|
|
|
|
|
|
|
|
#endif
|