您最多选择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 */