12 lines
205 B
C
12 lines
205 B
C
/* 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
|