diff options
author | Jakob Kaivo <jkk@ung.org> | 2020-08-12 10:03:53 -0400 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2020-08-12 10:03:53 -0400 |
commit | a97a1ed57051fc0c4e2f2f803a4d6a734689cbdc (patch) | |
tree | 55ebd06aae0741b3e4bfe975f7d91dc63b0c6a24 /src/unistd/fsync.c | |
parent | 4f50d3e580761fd3c44fe8ed0db57858c5295f25 (diff) |
remove __syscall_lookup()
Diffstat (limited to 'src/unistd/fsync.c')
-rw-r--r-- | src/unistd/fsync.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/unistd/fsync.c b/src/unistd/fsync.c index 35d70cbb..b0dd3820 100644 --- a/src/unistd/fsync.c +++ b/src/unistd/fsync.c @@ -1,12 +1,13 @@ #include <unistd.h> -#include "__nonstd.h" int fsync(int fildes) { + /* __POSIX_MIN(199309L); __POSIX_OPTION(_FSYNC); __XOPEN_MIN(4); __SC(int, fildes); + */ } /* |