From ca214751ee761d3d6d1f63e771456da63e4d7791 Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Wed, 12 Aug 2020 11:03:09 -0400 Subject: add version macros --- src/threads/thrd_detach.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/threads/thrd_detach.c') diff --git a/src/threads/thrd_detach.c b/src/threads/thrd_detach.c index 2e178bc3..b845369f 100644 --- a/src/threads/thrd_detach.c +++ b/src/threads/thrd_detach.c @@ -5,3 +5,7 @@ int thrd_detach(thrd_t thr) { return pthread_detach(thr) == 0 ? thrd_success : thrd_error; } + +/* +STDC(201112) +*/ -- cgit v1.2.1