Artifact 542bcf6bafb8ec35964543b29ea5c8741fe68f99:
- File ffcall/avcall/asmarm.h — part of check-in [c83183fa27] at 2013-05-11 07:09:05 on branch trunk — Updated ffcall src. Removed canvas-draw (can use direct from site now?) (user: matt, size: 420) [annotate] [blame] [check-ins using] [more...]
- File ffcall/callback/vacall_r/asmarm.h — part of check-in [c83183fa27] at 2013-05-11 07:09:05 on branch trunk — Updated ffcall src. Removed canvas-draw (can use direct from site now?) (user: matt, size: 420) [annotate] [blame] [check-ins using]
- File ffcall/vacall/asmarm.h — part of check-in [c83183fa27] at 2013-05-11 07:09:05 on branch trunk — Updated ffcall src. Removed canvas-draw (can use direct from site now?) (user: matt, size: 420) [annotate] [blame] [check-ins using]
// Assembly language support for arm CPU. // Bruno Haible 29.5.1999 #ifdef ASM_UNDERSCORE #define C(entrypoint) _##entrypoint #else #define C(entrypoint) entrypoint #endif // When assembly language code is compiled into a shared library, ELF linkers // need to know which symbols are functions. #if defined(__NetBSD__) #define DECLARE_FUNCTION(name) .type C(name),%function #else #define DECLARE_FUNCTION(name) #endif