Implement a proper block layer with partition support.
[pintos-anon] / src / devices / partition.h
1 #ifndef DEVICES_PARTITION_H
2 #define DEVICES_PARTITION_H
3
4 struct block;
5
6 void partition_scan (struct block *);
7
8 #endif /* devices/partition.h */