1/*	$OpenBSD: flockfile.c,v 1.5 2001/09/04 22:17:45 fgsch Exp $	*/
2
3#include <stdio.h>
4
5/* These are all no-ops until they are implemented */
6
7void flockfile(FILE *fp)
8{
9	return;
10}
11
12void funlockfile(FILE *fp)
13{
14	return;
15}
16
17
18