mirror of
https://github.com/fluencelabs/musl
synced 2025-05-24 05:01:32 +00:00
9 lines
102 B
C
9 lines
102 B
C
|
#include "stdio_impl.h"
|
||
|
|
||
|
int fileno(FILE *f)
|
||
|
{
|
||
|
return f->fd;
|
||
|
}
|
||
|
|
||
|
weak_alias(fileno, fileno_unlocked);
|