You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

compiler.h 420B

12345678910111213141516171819
  1. #ifndef _BITS_COMPILER_H
  2. #define _BITS_COMPILER_H
  3. FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
  4. /** Dummy relocation type */
  5. #define RELOC_TYPE_NONE R_X86_64_NONE
  6. #ifndef ASSEMBLY
  7. /** Declare a function with standard calling conventions */
  8. #define __asmcall __attribute__ (( used, regparm(0) ))
  9. /** Declare a function with libgcc implicit linkage */
  10. #define __libgcc
  11. #endif /* ASSEMBLY */
  12. #endif /* _BITS_COMPILER_H */