diff options
Diffstat (limited to 'src/sysdeps/trystatim.c')
-rw-r--r-- | src/sysdeps/trystatim.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/sysdeps/trystatim.c b/src/sysdeps/trystatim.c new file mode 100644 index 0000000..94834cc --- /dev/null +++ b/src/sysdeps/trystatim.c @@ -0,0 +1,9 @@ +/* ISC license. */ + +#include <sys/stat.h> +#include <time.h> + +struct stat st ; +struct timespec *tsa = &st.st_atim ; +struct timespec *tsm = &st.st_mtim ; +struct timespec *tsc = &st.st_ctim ; |