flockfile.c 132 字节
Newer Older
1 2 3 4 5
#include "stdio_impl.h"
#include "pthread_impl.h"

void flockfile(FILE *f)
{
6
	if (!libc.threaded) pthread_self();
7 8
	__lockfile(f);
}