diff options
Diffstat (limited to 'sys/arch/macppc/include/disklabel.h')
-rw-r--r-- | sys/arch/macppc/include/disklabel.h | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/sys/arch/macppc/include/disklabel.h b/sys/arch/macppc/include/disklabel.h index 07ae6dc615b..c6b3e749b29 100644 --- a/sys/arch/macppc/include/disklabel.h +++ b/sys/arch/macppc/include/disklabel.h @@ -1,4 +1,4 @@ -/* $OpenBSD: disklabel.h,v 1.6 2006/06/26 23:11:31 krw Exp $ */ +/* $OpenBSD: disklabel.h,v 1.7 2006/07/01 16:50:33 krw Exp $ */ /* * Copyright (c) 1994 Christopher G. Demetriou @@ -84,20 +84,6 @@ struct dos_partition { #define DPSECT(s) ((s) & 0x3f) #define DPCYL(c, s) ((c) + (((s) & 0xc0) << 2)) -static __inline u_int32_t get_le(void *); - -static __inline u_int32_t -get_le(void *p) -{ - u_int8_t *_p = (u_int8_t *)p; - u_int32_t x; - x = _p[0]; - x |= _p[1] << 8; - x |= _p[2] << 16; - x |= _p[3] << 24; - return x; -} - /* HFS/DPME */ /* partition map structure from Inside Macintosh: Devices, SCSI Manager |