Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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 */