From 9695ea005d4af93dcd60f74f10fd3c54499a182f Mon Sep 17 00:00:00 2001 From: Nicholas Noll Date: Thu, 11 Nov 2021 16:31:58 -0800 Subject: chore: split up base library into individual files for smaller binaries --- sys/base/fs/internal.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 sys/base/fs/internal.h (limited to 'sys/base/fs/internal.h') diff --git a/sys/base/fs/internal.h b/sys/base/fs/internal.h new file mode 100644 index 0000000..7fde093 --- /dev/null +++ b/sys/base/fs/internal.h @@ -0,0 +1,18 @@ +#include +#include +#include +#include + +/* + * path history + */ +struct Key +{ + ino_t ino; + dev_t dev; +}; + +struct fs·History +{ + SET_STRUCT_BODY(struct Key); +}; -- cgit v1.2.1