9
0
Fork 0
barebox/include/partition.h

19 lines
252 B
C
Raw Normal View History

2007-07-05 16:01:23 +00:00
#ifndef __PARTITION_H
#define __PARTITION_H
struct device_d;
struct partition {
int num;
unsigned long offset;
struct device_d *parent;
struct device_d device;
char name[16];
};
2007-07-05 16:01:23 +00:00
#endif /* __PARTITION_H */