blob: 9f1d95ab747ede99c86ee22cd5af7c87449a90ec [file] [log] [blame]
//===-- Implementation header for tss_get function --------------*- C++ -*-===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_LIBC_SRC_THREADS_TSS_GET_H
#define LLVM_LIBC_SRC_THREADS_TSS_GET_H
#include <pthread.h>
namespace __llvm_libc {
void *tss_get(pthread_key_t);
} // namespace __llvm_libc
#endif // LLVM_LIBC_SRC_THREADS_TSS_GET_H