Run Nindent on com32/include/sys/elf32.h
authorH. Peter Anvin <hpa@zytor.com>
Fri, 29 May 2009 22:10:22 +0000 (15:10 -0700)
committerH. Peter Anvin <hpa@zytor.com>
Fri, 29 May 2009 22:10:22 +0000 (15:10 -0700)
Automatically reformat com32/include/sys/elf32.h using Nindent.

Do this for all files except HDT, gPXE and externally maintained
libraries (zlib, tinyjpeg, libpng).

Signed-off-by: H. Peter Anvin <hpa@zytor.com>
com32/include/sys/elf32.h

index e4df8ce..c98c274 100644 (file)
@@ -22,11 +22,11 @@ typedef uint16_t Elf32_Section;
 /* Dynamic header */
 
 typedef struct elf32_dyn {
-       Elf32_Sword d_tag;
-       union {
-               Elf32_Sword d_val;
-               Elf32_Addr d_ptr;
-       } d_un;
+    Elf32_Sword d_tag;
+    union {
+       Elf32_Sword d_val;
+       Elf32_Addr d_ptr;
+    } d_un;
 } Elf32_Dyn;
 
 /* Relocations */
@@ -35,79 +35,79 @@ typedef struct elf32_dyn {
 #define ELF32_R_TYPE(x)        ((x) & 0xff)
 
 typedef struct elf32_rel {
-       Elf32_Addr r_offset;
-       Elf32_Word r_info;
+    Elf32_Addr r_offset;
+    Elf32_Word r_info;
 } Elf32_Rel;
 
 typedef struct elf32_rela {
-       Elf32_Addr r_offset;
-       Elf32_Word r_info;
-       Elf32_Sword r_addend;
+    Elf32_Addr r_offset;
+    Elf32_Word r_info;
+    Elf32_Sword r_addend;
 } Elf32_Rela;
 
 /* Symbol */
 
 typedef struct elf32_sym {
-       Elf32_Word st_name;
-       Elf32_Addr st_value;
-       Elf32_Word st_size;
-       unsigned char st_info;
-       unsigned char st_other;
-       Elf32_Half st_shndx;
+    Elf32_Word st_name;
+    Elf32_Addr st_value;
+    Elf32_Word st_size;
+    unsigned char st_info;
+    unsigned char st_other;
+    Elf32_Half st_shndx;
 } Elf32_Sym;
 
 /* Main file header */
 
 typedef struct elf32_hdr {
-       unsigned char e_ident[EI_NIDENT];
-       Elf32_Half e_type;
-       Elf32_Half e_machine;
-       Elf32_Word e_version;
-       Elf32_Addr e_entry;
-       Elf32_Off e_phoff;
-       Elf32_Off e_shoff;
-       Elf32_Word e_flags;
-       Elf32_Half e_ehsize;
-       Elf32_Half e_phentsize;
-       Elf32_Half e_phnum;
-       Elf32_Half e_shentsize;
-       Elf32_Half e_shnum;
-       Elf32_Half e_shstrndx;
+    unsigned char e_ident[EI_NIDENT];
+    Elf32_Half e_type;
+    Elf32_Half e_machine;
+    Elf32_Word e_version;
+    Elf32_Addr e_entry;
+    Elf32_Off e_phoff;
+    Elf32_Off e_shoff;
+    Elf32_Word e_flags;
+    Elf32_Half e_ehsize;
+    Elf32_Half e_phentsize;
+    Elf32_Half e_phnum;
+    Elf32_Half e_shentsize;
+    Elf32_Half e_shnum;
+    Elf32_Half e_shstrndx;
 } Elf32_Ehdr;
 
 /* Program header */
 
 typedef struct elf32_phdr {
-       Elf32_Word p_type;
-       Elf32_Off p_offset;
-       Elf32_Addr p_vaddr;
-       Elf32_Addr p_paddr;
-       Elf32_Word p_filesz;
-       Elf32_Word p_memsz;
-       Elf32_Word p_flags;
-       Elf32_Word p_align;
+    Elf32_Word p_type;
+    Elf32_Off p_offset;
+    Elf32_Addr p_vaddr;
+    Elf32_Addr p_paddr;
+    Elf32_Word p_filesz;
+    Elf32_Word p_memsz;
+    Elf32_Word p_flags;
+    Elf32_Word p_align;
 } Elf32_Phdr;
 
 /* Section header */
 
 typedef struct elf32_shdr {
-       Elf32_Word sh_name;
-       Elf32_Word sh_type;
-       Elf32_Word sh_flags;
-       Elf32_Addr sh_addr;
-       Elf32_Off sh_offset;
-       Elf32_Word sh_size;
-       Elf32_Word sh_link;
-       Elf32_Word sh_info;
-       Elf32_Word sh_addralign;
-       Elf32_Word sh_entsize;
+    Elf32_Word sh_name;
+    Elf32_Word sh_type;
+    Elf32_Word sh_flags;
+    Elf32_Addr sh_addr;
+    Elf32_Off sh_offset;
+    Elf32_Word sh_size;
+    Elf32_Word sh_link;
+    Elf32_Word sh_info;
+    Elf32_Word sh_addralign;
+    Elf32_Word sh_entsize;
 } Elf32_Shdr;
 
 /* Note header */
 typedef struct elf32_note {
-       Elf32_Word n_namesz;    /* Name size */
-       Elf32_Word n_descsz;    /* Content size */
-       Elf32_Word n_type;      /* Content type */
+    Elf32_Word n_namesz;       /* Name size */
+    Elf32_Word n_descsz;       /* Content size */
+    Elf32_Word n_type;         /* Content type */
 } Elf32_Nhdr;
 
-#endif                         /* _SYS_ELF32_H */
+#endif /* _SYS_ELF32_H */