repo.or.cz
/
haiku.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
headers/bsd: Add sys/queue.h.
[haiku.git]
/
src
/
system
/
libroot
/
posix
/
stdio
/
flockfile.c
blob
2bd084c87b0de2f98591531e0315e90bfa205232
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
7
void
flockfile
(
FILE
*
fp
)
8
{
9
return
;
10
}
11
12
void
funlockfile
(
FILE
*
fp
)
13
{
14
return
;
15
}
16
17