mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-15 19:09:58 +08:00
7c8bd7a075
* libc/syscalls/sysclose.c: Always call reentrant version of the underlying syscall since one is guaranteed to exist in libc/reent. * libc/syscalls/sysexecve.c: Ditto. * libc/syscalls/sysfcntl.c: Ditto. * libc/syscalls/sysfork.c: Ditto. * libc/syscalls/sysfstat.c: Ditto. * libc/syscalls/sysgetpid.c: Ditto. * libc/syscalls/sysgettod.c: Ditto. * libc/syscalls/syskill.c: Ditto. * libc/syscalls/syslink.c: Ditto. * libc/syscalls/syslseek.c: Ditto. * libc/syscalls/sysopen.c: Ditto. * libc/syscalls/sysread.c: Ditto. * libc/syscalls/syssbrk.c: Ditto. * libc/syscalls/sysstat.c: Ditto. * libc/syscalls/systimes.c: Ditto. * libc/syscalls/sysunlink.c: Ditto. * libc/syscalls/syswait.c: Ditto. * libc/syscalls/syswrite.c: Ditto.
20 lines
355 B
C
20 lines
355 B
C
/* connector for fcntl */
|
|
/* only called from stdio/fdopen.c, so arg can be int. */
|
|
|
|
#include <reent.h>
|
|
#include <errno.h>
|
|
|
|
int
|
|
_DEFUN (fcntl, (fd, flag, arg),
|
|
int fd _AND
|
|
int flag _AND
|
|
int arg)
|
|
{
|
|
#ifdef HAVE_FCNTL
|
|
return _fcntl_r (_REENT, fd, flag, arg);
|
|
#else /* !HAVE_FCNTL */
|
|
errno = ENOSYS;
|
|
return -1;
|
|
#endif /* !HAVE_FCNTL */
|
|
}
|