~ubuntu-branches/ubuntu/trusty/util-linux/trusty-proposed

« back to all changes in this revision

Viewing changes to fdisk/fdisk.h

  • Committer: Package Import Robot
  • Author(s): LaMont Jones
  • Date: 2011-11-03 15:38:23 UTC
  • mto: (4.5.5 sid) (1.6.4)
  • mto: This revision was merged to the branch mainline in revision 85.
  • Revision ID: package-import@ubuntu.com-20111103153823-10sx16jprzxlhkqf
ImportĀ upstreamĀ versionĀ 2.20.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
94
94
extern unsigned long long get_start_sect(struct partition *p);
95
95
extern unsigned long long get_nr_sects(struct partition *p);
96
96
 
97
 
extern int osf_label;
98
 
extern int sun_label;
99
 
extern int sgi_label;
100
 
extern int aix_label;
101
 
extern int mac_label;
 
97
enum labeltype {
 
98
        DOS_LABEL,
 
99
        SUN_LABEL,
 
100
        SGI_LABEL,
 
101
        AIX_LABEL,
 
102
        OSF_LABEL,
 
103
        MAC_LABEL
 
104
};
 
105
 
 
106
extern enum labeltype disklabel;
102
107
 
103
108
/* prototypes for fdiskbsdlabel.c */
104
109
extern void bselect(void);