diff options
author | 2023-09-27 03:48:50 -0400 | |
---|---|---|
committer | 2023-09-27 09:48:50 +0200 | |
commit | d8f1b27939216dc6666e1a334f38204e17509ceb (patch) | |
tree | e84c4202946dab61afe800d02b4e20cb1f25e602 /src/lib/formats/fs_unformatted.cpp | |
parent | 7edf0aa2abba2bef57b477fa1af0fed7213647c2 (diff) |
Filesystem code refactoring (#11570)
- Separate fs::block_t and fs::filesystem_t to a new source file and header
- Remove inclusion of flopimg.h from fsmgr.h
Diffstat (limited to 'src/lib/formats/fs_unformatted.cpp')
-rw-r--r-- | src/lib/formats/fs_unformatted.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/formats/fs_unformatted.cpp b/src/lib/formats/fs_unformatted.cpp index 03a795023af..995c2b76148 100644 --- a/src/lib/formats/fs_unformatted.cpp +++ b/src/lib/formats/fs_unformatted.cpp @@ -4,6 +4,8 @@ // Creation of unformatted floppy images #include "fs_unformatted.h" +#include "flopimg.h" +#include "fsblk.h" namespace fs { |