diff options
Diffstat (limited to 'src/threads/tss_create.c')
| -rw-r--r-- | src/threads/tss_create.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/threads/tss_create.c b/src/threads/tss_create.c index 97803893..28219231 100644 --- a/src/threads/tss_create.c +++ b/src/threads/tss_create.c @@ -5,3 +5,7 @@ int tss_create(tss_t *key, tss_dtor_t dtor) { return pthread_key_create(key, dtor) == 0 ? thrd_success : thrd_error; } + +/* +STDC(201112) +*/ |
