diff options
author | David du Colombier <0intro@gmail.com> | 2019-09-06 11:55:35 -0700 |
---|---|---|
committer | David du Colombier <0intro@gmail.com> | 2019-09-06 11:55:35 -0700 |
commit | 27824a6c0b805cf5bd819d904d8eba186b489012 (patch) | |
tree | 55ea7bebc7f566e1ac99235f2d55c15c49e8b02a | |
parent | cb091e75393b176ccb02c68f0ecfcfbb8bc49376 (diff) | |
download | plan9front-27824a6c0b805cf5bd819d904d8eba186b489012.tar.xz |
sys/src/libventi: define VtEntryNoArchive constant
-rw-r--r-- | sys/include/venti.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/include/venti.h b/sys/include/venti.h index 3599c348f..e4677c1a3 100644 --- a/sys/include/venti.h +++ b/sys/include/venti.h @@ -134,7 +134,8 @@ enum _VtEntryDir = 1<<1, /* a directory */ _VtEntryDepthShift = 2, /* shift for pointer depth */ _VtEntryDepthMask = 7<<2, /* mask for pointer depth */ - VtEntryLocal = 1<<5 /* for local storage only */ + VtEntryLocal = 1<<5, /* for local storage only */ + VtEntryNoArchive = 1<<6 /* for local storage only */ }; enum { |