Luna/libc/include/errno.h
apio 471103e4f3
All checks were successful
continuous-integration/drone/push Build is passing
Remove the word 'header' from libc header descriptions
2023-01-07 11:39:15 +01:00

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