mirror of
https://github.com/trapexit/mergerfs.git
synced 2024-12-02 21:50:01 +08:00
11 lines
92 B
C
11 lines
92 B
C
|
#include <sys/types.h>
|
||
|
#include <unistd.h>
|
||
|
|
||
|
int
|
||
|
main(void)
|
||
|
{
|
||
|
(void)fork;
|
||
|
|
||
|
return 0;
|
||
|
}
|