mirror of https://git.musl-libc.org/git/musl
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
209 B
14 lines
209 B
#ifndef ERRNO_H
|
|
#define ERRNO_H
|
|
|
|
#include "../../include/errno.h"
|
|
|
|
#ifdef __GNUC__
|
|
__attribute__((const))
|
|
#endif
|
|
hidden int *___errno_location(void);
|
|
|
|
#undef errno
|
|
#define errno (*___errno_location())
|
|
|
|
#endif
|
|
|