LT.old: Make __errno_location/__h_errno_location thread safe
[uclibc-ng.git] / libc / misc / internals / __h_errno_location.c
blobb30859e81f199e862f71755a31689fd423fe92cb
1 /*
2 * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
4 * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
5 */
7 #include <features.h>
8 #include <netdb.h>
10 #ifndef __UCLIBC_HAS_TLS__
11 # undef h_errno
12 extern int h_errno;
13 #endif
15 int *__h_errno_location(void)
17 return &h_errno;