mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-15 19:09:58 +08:00
e71372faea
* libc/sys/linux/sys/stdio.h: New file. * libc/include/stdio.h: Add declarations for flockfile, ftrylockfile, and funlockfile. Include <sys/stdio.h>. * libc/stdio/clearerr.c: Add file locking. * libc/stdio/fclose.c: Likewise. * libc/stdio/feof.c: Likewise. * libc/stdio/ferror.c: Likewise. * libc/stdio/fflush.c: Likewise. * libc/stdio/fgetc.c: Likewise. * libc/stdio/fgetpos.c: Likewise. * libc/stdio/fgets.c: Likewise. * libc/stdio/fileno.c: Likewise. * libc/stdio/fputc.c: Likewise. * libc/stdio/fputs.c: Likewise. * libc/stdio/fread.c: Likewise. * libc/stdio/freopen.c: Likewise. * libc/stdio/fseek.c: Likewise. * libc/stdio/ftell.c: Likewise. * libc/stdio/fwrite.c: Likewise. * libc/stdio/getc.c: Likewise. * libc/stdio/putc.c: Likewise. * libc/stdio/setvbuf.c: Likewise. * libc/stdio/ungetc.c: Likewise. * libc/stdio/vfprintf.c: Likewise.
45 lines
741 B
C
45 lines
741 B
C
/*
|
|
FUNCTION
|
|
<<fileno>>---return file descriptor associated with stream
|
|
|
|
INDEX
|
|
fileno
|
|
|
|
ANSI_SYNOPSIS
|
|
#include <stdio.h>
|
|
int fileno(FILE *<[fp]>);
|
|
|
|
TRAD_SYNOPSIS
|
|
#include <stdio.h>
|
|
int fileno(<[fp]>)
|
|
FILE *<[fp]>;
|
|
|
|
DESCRIPTION
|
|
You can use <<fileno>> to return the file descriptor identified by <[fp]>.
|
|
|
|
RETURNS
|
|
<<fileno>> returns a non-negative integer when successful.
|
|
If <[fp]> is not an open stream, <<fileno>> returns -1.
|
|
|
|
PORTABILITY
|
|
<<fileno>> is not part of ANSI C.
|
|
POSIX requires <<fileno>>.
|
|
|
|
Supporting OS subroutines required: none.
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include "local.h"
|
|
|
|
int
|
|
_DEFUN (fileno, (f),
|
|
FILE * f)
|
|
{
|
|
int result;
|
|
_flockfile(f);
|
|
CHECK_INIT (f);
|
|
result = __sfileno (f);
|
|
_funlockfile(f);
|
|
return result;
|
|
}
|