Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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