summaryrefslogtreecommitdiff
path: root/05/musl-0.6.0/src/stdio/fileno.c
blob: 38bc8e89f3aedd04502877114dfffea4670824fc (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "stdio_impl.h"

int fileno(FILE *f)
{
	return f->fd;
}

int fileno_unlocked(FILE *f)
{
	return f->fd;
}