add hidden version of &errno accessor function
[musl] / src / include / errno.h
1 #ifndef ERRNO_H
2 #define ERRNO_H
3
4 #include "../../include/errno.h"
5
6 hidden int *___errno_location(void);
7
8 #undef errno
9 #define errno (*___errno_location())
10
11 #endif