aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2008-12-30 12:34:28 +0000
committerMike Frysinger <vapier@gentoo.org>2008-12-30 12:34:28 +0000
commit2b453f6d44fd13db90bc639bcde06ae385fcdde9 (patch)
treeca580ea87a51175321b9490b0d73cbccef73b1d3 /macho.h
parentadd test framework (diff)
downloadpax-utils-2b453f6d44fd13db90bc639bcde06ae385fcdde9.tar.gz
pax-utils-2b453f6d44fd13db90bc639bcde06ae385fcdde9.tar.bz2
pax-utils-2b453f6d44fd13db90bc639bcde06ae385fcdde9.zip
touchup whitespace style
Diffstat (limited to 'macho.h')
-rw-r--r--macho.h10
1 files changed, 1 insertions, 9 deletions
diff --git a/macho.h b/macho.h
index 0ebc0e3..3a73397 100644
--- a/macho.h
+++ b/macho.h
@@ -1,10 +1,9 @@
/*
* Copyright 2008 Gentoo Foundation
* Distributed under the terms of the GNU General Public License v2
- * $Header: /var/cvsroot/gentoo-projects/pax-utils/macho.h,v 1.6 2008/12/30 12:02:29 vapier Exp $
+ * $Header: /var/cvsroot/gentoo-projects/pax-utils/macho.h,v 1.7 2008/12/30 12:34:28 vapier Exp $
*/
-
#ifndef _MACHO_H
#define _MACHO_H 1
@@ -18,7 +17,6 @@
typedef int cpu_type_t;
typedef int cpu_subtype_t;
-
struct mach_header
{
uint32_t magic;
@@ -113,7 +111,6 @@ struct mach_header
subimages, as a result the two-level
namespace hints can always be used */
-
struct mach_header_64
{
uint32_t magic;
@@ -133,7 +130,6 @@ struct mach_header_64
#define CPU_TYPE_POWERPC64 (CPU_TYPE_POWERPC | CPU_ARCH_ABI64)
#define CPU_TYPE_X86_64 (CPU_TYPE_I386 | CPU_ARCH_ABI64)
-
struct load_command
{
uint32_t cmd;
@@ -211,7 +207,6 @@ struct load_command
framework or a client name for a bundle.
*/
-
union lc_str
{
uint32_t offset;
@@ -247,14 +242,12 @@ struct dylib_command
/* cmdsize: set to sizeof(dylib_command) plus the size of the data
* pointed to by the name field of the dylib field. */
-
struct dylinker_command {
uint32_t cmd;
uint32_t cmdsize;
union lc_str name;
};
-
struct fat_header
{
uint32_t magic;
@@ -266,7 +259,6 @@ struct fat_header
#define FAT_CIGAM 0xbebafeca /* for intel dudes */
/* nfat_arch: the number of far_arch structures following */
-
struct fat_arch
{
cpu_type_t cputype;