ref: 2aee89298cbbf5c1b4d50e70733b52ae75c706fd
dir: /libnpe/utime.c/
#include <utime.h>
int
utime(const char *path, const struct utimbuf *times)
{
Dir d;
nulldir(&d);
if(times == nil)
d.atime = d.mtime = time(nil);
else{
d.atime = times->actime;
d.mtime = times->modtime;
}
return dirwstat(path, &d);
}