Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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 */