blob: 94834ccf463505ee5c96be51cb750808b0d67724 (
plain)
1
2
3
4
5
6
7
8
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 ;
|