Write tests and fixes for utimensat()

This commit is contained in:
Justine Tunney 2022-06-17 02:43:00 -07:00
parent c06ffd458c
commit d0d9cd38c5
8 changed files with 129 additions and 41 deletions

View file

@ -7,12 +7,4 @@
#include "libc/sysv/consts/s.h"
#include "libc/sysv/consts/utime.h"
#include "libc/time/time.h"
#define st_atime st_atim.tv_sec
#define st_atime_nsec st_atim.tv_nsec
#define st_mtime st_mtim.tv_sec
#define st_mtime_nsec st_mtim.tv_nsec
#define st_ctime st_ctim.tv_sec
#define st_ctime_nsec st_ctim.tv_nsec
#endif