aboutsummaryrefslogtreecommitdiffstats
path: root/src/sysdeps/trystatim.c
blob: 3df38b8be6cfcc94f0dd355f51a40a06c2c0801f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* ISC license. */

#ifndef _DARWIN_C_SOURCE
#define _DARWIN_C_SOURCE
#endif

#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 ;