1 /* 2 * Copyright 2022 Yonggang Luo 3 * SPDX-License-Identifier: MIT 4 */ 5 6 #ifndef C11_IMPL_THREADS_WIN32_H_ 7 #define C11_IMPL_THREADS_WIN32_H_ 8 9 10 #ifdef __cplusplus 11 extern "C" { 12 #endif 13 14 void __threads_win32_tls_callback(void); 15 16 #ifdef __cplusplus 17 } 18 #endif 19 20 #endif 21