1 /*
2  * Copyright (c) 2011 The Native Client Authors. All rights reserved.
3  * Use of this source code is governed by a BSD-style license that can be
4  * found in the LICENSE file.
5  */
6 
7 #include "native_client/src/untrusted/nacl/nacl_irt.h"
8 #include "native_client/src/untrusted/nacl/nacl_thread.h"
9 
nacl_tls_init(void * thread_ptr)10 int nacl_tls_init(void *thread_ptr) {
11   return __libnacl_irt_tls.tls_init(thread_ptr);
12 }
13