Luna/libc/include/errno.h
apio 367a2ce521
All checks were successful
continuous-integration/drone/push Build is passing
libc: header documentation for supported functions
2023-01-06 20:02:07 +01:00

12 lines
212 B
C

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