diff options
| author | rsc <devnull@localhost> | 2003-11-23 18:12:54 +0000 |
|---|---|---|
| committer | rsc <devnull@localhost> | 2003-11-23 18:12:54 +0000 |
| commit | fd04aacee17b348da206c13a550dc1029669805f (patch) | |
| tree | 9bdd35a25ff6e3d6e9a0171b06240a76723f922c /src/lib9/dirwstat.c | |
| parent | 74f990ad84deb1591ddb91be4fc8152ec0c46222 (diff) | |
| download | plan9port-fd04aacee17b348da206c13a550dc1029669805f.tar.gz plan9port-fd04aacee17b348da206c13a550dc1029669805f.zip | |
Various additions and fixes.
Diffstat (limited to 'src/lib9/dirwstat.c')
| -rw-r--r-- | src/lib9/dirwstat.c | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/lib9/dirwstat.c b/src/lib9/dirwstat.c new file mode 100644 index 00000000..573dd376 --- /dev/null +++ b/src/lib9/dirwstat.c @@ -0,0 +1,21 @@ +#include <u.h> +#define NOPLAN9DEFINES +#include <libc.h> + +#include <sys/time.h> + +int +dirwstat(char *file, Dir *dir) +{ + struct timeval tv[2]; + + /* BUG handle more */ + if(dir->mtime == ~0ULL) + return 0; + + tv[0].tv_sec = dir->mtime; + tv[0].tv_usec = 0; + tv[1].tv_sec = dir->mtime; + tv[1].tv_usec = 0; + return utimes(file, tv); +} |
