source: trunk/sys/dietlibc/fileno.c @ 1

Last change on this file since 1 was 1, checked in by alain, 7 years ago

First import

File size: 154 bytes
Line 
1#include "dietstdio.h"
2
3int fileno_unlocked(FILE*stream) {
4  return stream->fd;
5}
6int fileno(FILE*stream)
7__attribute__((weak,alias("fileno_unlocked")));
Note: See TracBrowser for help on using the repository browser.