diff options
Diffstat (limited to 'src/threads/call_once.c')
| -rw-r--r-- | src/threads/call_once.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/threads/call_once.c b/src/threads/call_once.c index 14f4962d..1f1a792c 100644 --- a/src/threads/call_once.c +++ b/src/threads/call_once.c @@ -5,3 +5,7 @@ void call_once(once_flag *flag, void (*func)(void)) { pthread_once(flag, func); } + +/* +STDC(201112) +*/ |
