blob: 95c7686f385465992947ba53af5db481ff30c8e4 (
plain)
1
2
3
4
5
6
7
8
9
|
#include "asm/unistd_64.h" // for __NR_close
#include <libc.h> // for __unused
#include <syscall.h> // for __syscall_1, syscall
int posix_close(int fildes, int __unused flag)
{
return syscall(close, fildes);
}
|