URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [newlib-1.18.0/] [newlib/] [libc/] [syscalls/] [sysclose.c] - Rev 841
Go to most recent revision | Compare with Previous | Blame | View Log
/* connector for close */ #include <reent.h> #include <unistd.h> int _DEFUN (close, (fd), int fd) { return _close_r (_REENT, fd); }
Go to most recent revision | Compare with Previous | Blame | View Log