mirror of
https://github.com/trapexit/mergerfs.git
synced 2024-11-26 10:13:50 +08:00
15 lines
162 B
C
15 lines
162 B
C
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
#include <unistd.h>
|
|
|
|
int
|
|
main(int argc,
|
|
char *argv[])
|
|
{
|
|
struct stat st;
|
|
|
|
(void)st.st_atim;
|
|
|
|
return 0;
|
|
}
|