blob: 5f328edd1696b41b848d451bca43b3581a70371d [file] [log] [blame]
Ben Murdochbb1529c2013-08-08 10:24:53 +01001// Copyright 2013 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "nacl_io/ossocket.h"
6
7#if defined(PROVIDES_SOCKET_API) && !defined(__GLIBC__)
8
9static __thread int __h_errno__;
10
11extern "C" int *__h_errno_location() {
12 return &__h_errno__;
13}
14
15#endif // defined(PROVIDES_SOCKET_API) && !defined(__GLIBC__)