source:
trunk/sys/dietlibc/fileno.c
@
251
Last change on this file since 251 was 1, checked in by , 8 years ago | |
---|---|
File size: 154 bytes |
Line | |
---|---|
1 | #include "dietstdio.h" |
2 | |
3 | int fileno_unlocked(FILE*stream) { |
4 | return stream->fd; |
5 | } |
6 | int fileno(FILE*stream) |
7 | __attribute__((weak,alias("fileno_unlocked"))); |
Note: See TracBrowser
for help on using the repository browser.