diff options
Diffstat (limited to 'src/stdio/fileno.c')
-rw-r--r-- | src/stdio/fileno.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/stdio/fileno.c b/src/stdio/fileno.c deleted file mode 100644 index 5432ecb0..00000000 --- a/src/stdio/fileno.c +++ /dev/null @@ -1,13 +0,0 @@ -#include <stdio.h> -#include "_stdio.h" - -int fileno(FILE * stream) -{ - SIGNAL_SAFE(0); - ASSERT_NONNULL(stream); - return stream->fd; -} - -/* -POSIX(1) -*/ |