summaryrefslogtreecommitdiff
path: root/src/stdio/fileno.c
blob: 7a6cbd7cef9c29e987bc430904f794ba4e890ebe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#if 0

#include <stdio.h>
#include "_stdio.h"
#include "_assert.h"

int fileno(FILE * stream)
{
	ASSERT_NONNULL(stream);
	return stream->fd;
}
/*
POSIX(1)
*/


#endif