xref: /aosp_15_r20/external/musl/src/unistd/posix_close.c (revision c9945492fdd68bbe62686c5b452b4dc1be3f8453)
1 #include <unistd.h>
2 
posix_close(int fd,int flags)3 int posix_close(int fd, int flags)
4 {
5 	return close(fd);
6 }
7