Skip to content

Commit

Permalink
[libc][Obvious] Fix bad include and type in threads/tss_get.h.
Browse files Browse the repository at this point in the history
  • Loading branch information
Siva Chandra Reddy committed Mar 9, 2023
1 parent 22c0ce9 commit b32acff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libc/src/threads/tss_get.h
Expand Up @@ -9,11 +9,11 @@
#ifndef LLVM_LIBC_SRC_THREADS_TSS_GET_H
#define LLVM_LIBC_SRC_THREADS_TSS_GET_H

#include <pthread.h>
#include <threads.h>

namespace __llvm_libc {

void *tss_get(pthread_key_t);
void *tss_get(tss_t);

} // namespace __llvm_libc

Expand Down

0 comments on commit b32acff

Please sign in to comment.