Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
lib
libc
musl
src
linux
syncfs.c
pretty
plain
permalink
blame
history
•
8 lines
•
118 B
1
#define _GNU_SOURCE
2
#include <unistd.h>
3
#include "syscall.h"
4
5
int syncfs(int fd)
6
{
7
	return syscall(SYS_syncfs, fd);
8
}