]> git.ipfire.org Git - thirdparty/glibc.git/blob - include/errno.h
Update.
[thirdparty/glibc.git] / include / errno.h
1 #include <stdlib/errno.h>
2
3 #ifdef _ERRNO_H
4
5 #if USE_TLS && HAVE___THREAD
6 # undef errno
7 extern __thread int errno;
8 # define __set_errno(val) (errno = (val))
9 #else
10 # define __set_errno(val) (*__errno_location ()) = (val)
11 #endif
12
13 #endif