Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

elf.h 479B

123456789101112131415161718
  1. /*
  2. * Copyright (C) 2004 Tobias Lorenz
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License version 2 as
  6. * published by the Free Software Foundation.
  7. */
  8. #ifndef ARM_BITS_ELF_H
  9. #define ARM_BITS_ELF_H
  10. /* ELF Defines for the current architecture */
  11. #define EM_CURRENT EM_ARM
  12. #define ELFDATA_CURRENT ELFDATA2LSB
  13. #define ELF_CHECK_ARCH(x) \
  14. ((x).e_machine == EM_CURRENT)
  15. #endif /* ARM_BITS_ELF_H */