summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/libpthread/pthread_sys_fdatasync.c
blob: 69857c7b3d382a83cba2389a0b3e9917532fdc18 (plain)
1
2
3
4
5
6
7
8
9
10
#include <unistd.h>

#include <pthread.h>
#include "thread_internal.h"

int fdatasync(int fd)
{
  __TEST_CANCEL();
  return __libc_fdatasync(fd);
}