mirror of
https://github.com/trapexit/mergerfs.git
synced 2025-02-03 08:48:20 +08:00
13 lines
136 B
C
13 lines
136 B
C
|
#define _GNU_SOURCE
|
||
|
#include <fcntl.h>
|
||
|
#include <sys/uio.h>
|
||
|
|
||
|
int
|
||
|
main(int argc,
|
||
|
char *argv[])
|
||
|
{
|
||
|
(void)vmsplice;
|
||
|
|
||
|
return 0;
|
||
|
}
|