reenable sync_file_range; should no longer break on mips

This commit is contained in:
Rich Felker 2012-09-09 14:58:55 -04:00
parent 9a3bbce447
commit 3d939be2e3
1 changed files with 2 additions and 2 deletions

View File

@ -5,10 +5,10 @@
int sync_file_range(int fd, off_t pos, off_t len, unsigned flags) int sync_file_range(int fd, off_t pos, off_t len, unsigned flags)
{ {
#if 0 && defined(SYS_sync_file_range2) #if defined(SYS_sync_file_range2)
return syscall(SYS_sync_file_range2, fd, flags, return syscall(SYS_sync_file_range2, fd, flags,
__SYSCALL_LL_E(pos), __SYSCALL_LL_E(len)); __SYSCALL_LL_E(pos), __SYSCALL_LL_E(len));
#elif 0 && defined(SYS_sync_file_range) #elif defined(SYS_sync_file_range)
return syscall(SYS_sync_file_range, fd, return syscall(SYS_sync_file_range, fd,
__SYSCALL_LL_O(pos), __SYSCALL_LL_E(len), flags); __SYSCALL_LL_O(pos), __SYSCALL_LL_E(len), flags);
#else #else