2101b4ebc0
Change-Id: Iebe5f06b0dc95cdca61d95ab875d4fa1171f4f4c
16 lines
249 B
C
16 lines
249 B
C
#include <sys/cdefs.h>
|
|
#include "namespace.h"
|
|
#include <lib.h>
|
|
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
|
|
int close(fd)
|
|
int fd;
|
|
{
|
|
message m;
|
|
|
|
memset(&m, 0, sizeof(m));
|
|
m.m_lc_vfs_close.fd = fd;
|
|
return(_syscall(VFS_PROC_NR, VFS_CLOSE, &m));
|
|
}
|