URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [newlib-1.17.0/] [newlib/] [libc/] [syscalls/] [sysfcntl.c] - Rev 438
Go to most recent revision | Compare with Previous | Blame | View Log
/* 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 */ }
Go to most recent revision | Compare with Previous | Blame | View Log