# include <linux/blkpg.h>
#endif
+#include "fdisk.h"
+
static void __attribute__ ((__noreturn__)) usage(FILE *out)
{
fputs(USAGE_HEADER, out);
+#ifndef UTIL_LINUX_FDISK_H
+#define UTIL_LINUX_FDISK_H
/*
fdisk.h
*/
/* prototypes for fdisk.c */
extern void list_partition_types(struct fdisk_context *cxt);
+extern void list_disk_geometry(struct fdisk_context *cxt);
+extern void print_raw(struct fdisk_context *cxt);
+extern void change_partition_type(struct fdisk_context *cxt);
extern struct fdisk_parttype *ask_partition_type(struct fdisk_context *cxt);
extern void reread_partition_table(struct fdisk_context *cxt, int leave);
extern void toggle_dos_compatibility_flag(struct fdisk_context *cxt);
extern void warn_limits(struct fdisk_context *cxt);
+#endif /* UTIL_LINUX_FDISK_H */