mirror of
https://github.com/morgan9e/systemd
synced 2026-04-14 16:37:19 +09:00
14 lines
398 B
C
14 lines
398 B
C
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
#pragma once
|
|
|
|
/* If threads.h doesn't exist, then define our own thread_local to match C11's thread_local. */
|
|
#if HAVE_THREADS_H
|
|
# include <threads.h>
|
|
#elif !(defined(thread_local))
|
|
# if __STDC_VERSION__ >= 201112L && !(defined(__STDC_NO_THREADS__))
|
|
# define thread_local _Thread_local
|
|
# else
|
|
# define thread_local __thread
|
|
# endif
|
|
#endif
|