sysdep.h 447 B

1234567891011121314151617181920212223242526
  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. /* Pointer mangling is not yet supported */
  16. #define PTR_MANGLE(var) (void) (var)
  17. #define PTR_DEMANGLE(var) (void) (var)
  18. #endif