source: trunk/libs/newlib/src/newlib/libc/syscalls/sysclose.c @ 471

Last change on this file since 471 was 444, checked in by satin@…, 6 years ago

add newlib,libalmos-mkh, restructure shared_syscalls.h and mini-libc

File size: 122 bytes
Line 
1/* connector for close */
2
3#include <reent.h>
4#include <unistd.h>
5
6int
7close (int fd)
8{
9  return _close_r (_REENT, fd);
10}
Note: See TracBrowser for help on using the repository browser.