master
/ miniconda3 / pkgs / libstdcxx-ng-11.2.0-h1234567_1 / info / recipe / parent / c11threads.c

c11threads.c @74036c5 raw · history · blame

1
2
3
4
5
#include <threads.h>
int main() {
    mtx_t mutex;
    mtx_init(&mutex, mtx_plain);
}