From 52b8c93b7180eac72721d59315aae2b592e7b3a1 Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Wed, 20 Feb 2019 12:00:12 -0500 Subject: add symbols from POSIX.1b-1993 --- src/unistd/fdatasync.c | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/unistd/fdatasync.c (limited to 'src/unistd/fdatasync.c') diff --git a/src/unistd/fdatasync.c b/src/unistd/fdatasync.c new file mode 100644 index 00000000..3de269ec --- /dev/null +++ b/src/unistd/fdatasync.c @@ -0,0 +1,11 @@ +#include +#include "__nonstd.h" + +int fdatasync(int fildes) +{ + __SC(int, fildes); +} + +/* +POSIX(199309) +*/ -- cgit v1.2.1