/* ** Copyright 2004, Axel Dörfler, axeld@pinc-software.de. All rights reserved. ** Distributed under the terms of the MIT License. */ #include #include #include #include #include #include int fsync(int fd) { RETURN_AND_SET_ERRNO_TEST_CANCEL(_kern_fsync(fd)); } void sync(void) { _kern_sync(); }