use fmt; use io; use gpt; export fn create(vol: io::file, args: []str) void = { // XXX this is a stub const vol = gpt::create(vol, 1000); defer { gpt::chksums(vol); gpt::commit(vol)!; gpt::finish(vol); }; };