| 12345678910111213141516171819 | /* * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org> * * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. */#include <features.h>#include <netdb.h>#ifndef __UCLIBC_HAS_TLS__# undef h_errnoextern int h_errno;#endifint *__h_errno_location(void){    return &h_errno;}libc_hidden_def(__h_errno_location)
 |