mirror of https://git.musl-libc.org/git/musl
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
172 B
11 lines
172 B
#include "stdio_impl.h"
|
|
|
|
FILE *__ofl_add(FILE *f)
|
|
{
|
|
FILE **head = __ofl_lock();
|
|
f->next = *head;
|
|
if (*head) (*head)->prev = f;
|
|
*head = f;
|
|
__ofl_unlock();
|
|
return f;
|
|
}
|
|
|