StupidOS/sbin/parted/fdisk/partition.h
2025-10-08 15:01:16 +02:00

12 lines
171 B
C

#ifndef FDISK_PARTITION_H
# define FDISK_PARTITION_H 1
enum partition_flags {
PARTITION_BOOTABLE,
};
struct partition {
int dummy;
};
#endif /* !FDISK_PARTITION_H */