aboutsummaryrefslogtreecommitdiff
path: root/src/base/fs/internal.h
diff options
context:
space:
mode:
authorNicholas Noll <nbnoll@eml.cc>2021-12-05 16:53:55 -0800
committerNicholas Noll <nbnoll@eml.cc>2021-12-05 16:53:55 -0800
commitb4cb7c06f94e2e91b22b7d82efd7943a82331d86 (patch)
tree99fa7085855875efa7422ee58f322f8c94bda860 /src/base/fs/internal.h
parent07e77936d535e58b0aeb4f2a11400c1050556739 (diff)
Chore: updated fs·walk to use new data structures
Completes the port to our standard library (up to malloc).
Diffstat (limited to 'src/base/fs/internal.h')
-rw-r--r--src/base/fs/internal.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/base/fs/internal.h b/src/base/fs/internal.h
index 7fde093..7280238 100644
--- a/src/base/fs/internal.h
+++ b/src/base/fs/internal.h
@@ -1,15 +1,14 @@
#include <u.h>
#include <base.h>
#include <base/macro/map.h>
-#include <dirent.h>
/*
* path history
*/
struct Key
{
- ino_t ino;
- dev_t dev;
+ uint64 ino;
+ uint64 dev;
};
struct fs·History