mirror of
https://github.com/ziglang/zig.git
synced 2026-01-17 12:55:16 +00:00
also start prefering NtDll API. so far: * NtQueryInformationFile * NtClose adds a performance workaround for windows unicode conversion. but that should probably be removed before merging
8 lines
125 B
C
8 lines
125 B
C
#include "pthread_impl.h"
|
|
|
|
int pthread_mutexattr_init(pthread_mutexattr_t *a)
|
|
{
|
|
*a = (pthread_mutexattr_t){0};
|
|
return 0;
|
|
}
|