sysdep.h 324 B

123456789101112131415161718192021
  1. #ifndef _LINUX_ARC_SYSDEP_H
  2. #define _LINUX_ARC_SYSDEP_H 1
  3. #include <features.h>
  4. #include <libc-internal.h>
  5. #ifdef __ASSEMBLER__
  6. #define ENTRY(nm) \
  7. .text ` \
  8. .align 4 ` \
  9. .globl nm ` \
  10. .type nm,@function ` \
  11. nm:
  12. #define END(name) .size name,.-name
  13. #endif /* __ASSEMBLER __*/
  14. #include <common/sysdep.h>
  15. #endif