summaryrefslogtreecommitdiffstats
path: root/src/thread.h
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2023-11-10 09:58:57 -0500
committerTavian Barnes <tavianator@tavianator.com>2023-11-10 09:58:57 -0500
commit4efbe8eca395c90fc0053c7ba1038ccb7bf69e61 (patch)
tree28cb2bc0052df4b3926d72a9da9df8c4ce59258f /src/thread.h
parente25261a90222de75781726a93ab809c660208afd (diff)
downloadbfs-4efbe8eca395c90fc0053c7ba1038ccb7bf69e61.tar.xz
config: Add constants for C standard versions
Diffstat (limited to 'src/thread.h')
-rw-r--r--src/thread.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/thread.h b/src/thread.h
index b37d45f..8174fe4 100644
--- a/src/thread.h
+++ b/src/thread.h
@@ -11,7 +11,7 @@
#include "config.h"
#include <pthread.h>
-#if __STDC_VERSION__ < 202311L && !defined(thread_local)
+#if __STDC_VERSION__ < C23 && !defined(thread_local)
# if BFS_USE_THREADS_H
# include <threads.h>
# else