Files
termux-packages/packages/clamav/syncfs.c
termux-pacman-bot cfff76ed27 clamav: Bump to 1.1.0
2023-05-02 13:31:25 +00:00

11 lines
160 B
C

#if defined __ANDROID__ && __ANDROID_API__ < 28
#include <sys/syscall.h>
#include <unistd.h>
int
syncfs(int fd)
{
return syscall(SYS_syncfs, fd);
}
#endif