fxlibc/src/libc/errno/errno.c
Lephenixnoir 5f48a6b4e0
errno: add the errno variable and base macros
A <bits/errno.h> file will likely by added later on for each target to
add more specific values.
2021-05-16 18:12:46 +02:00

5 lines
83 B
C

#include <errno.h>
/* The initial value is 0 at program startup */
int errno = 0;