2022-06-30 | Paul Boddie | raw annotate files changeset graph | Added missing structure members. | mmap-region-flags |
1 #include <systypes/base.h> /* offset_t */ 2 3 /* An interface providing operations common to both unmapped and mapped files. 4 Other interfaces are used to specialise different kinds of files. */ 5 6 interface File 7 { 8 /* Resize the file. */ 9 10 [opcode(21)] void resize(inout offset_t size); 11 };