Sign in
mojo
/
mojo-tools
/
862d13b6f591fb83034e80ed5a8c59fb9d0b7b56
/
.
/
fusl
/
src
/
stdio
/
ofl.c
blob: 742ccac0b61f38cdca760fa4577b4461afb7e592 [
file
] [
log
] [
blame
]
#include
"stdio_impl.h"
#include
"libc.h"
static
FILE
*
ofl_head
;
static
volatile
int
ofl_lock
[
2
];
FILE
**
__ofl_lock
()
{
LOCK
(
ofl_lock
);
return
&
ofl_head
;
}
void
__ofl_unlock
()
{
UNLOCK
(
ofl_lock
);
}