URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [newlib-1.10.0/] [newlib/] [libc/] [syscalls/] [sysclose.c] - Rev 1010
Go to most recent revision | Compare with Previous | Blame | View Log
/* connector for close */ #include <reent.h> int close (fd) int fd; { #ifdef REENTRANT_SYSCALLS_PROVIDED return _close_r (_REENT, fd); #else return _close (fd); #endif }
Go to most recent revision | Compare with Previous | Blame | View Log