Share Pastebin
Guest
Public paste!

Untitled

By: a guest | Mar 16th, 2010 | Syntax: C | Size: 0.16 KB | Hits: 38 | Expires: Never
Copy text to clipboard
  1. typedef struct arch_header
  2. {
  3.     unsigned char arch_type;
  4.     union
  5.     {
  6.          Elf32_Ehdr elf_32;
  7.          Elf64_Ehdr elf_64;
  8.     }arch;
  9. }arch_header_t;