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 373B

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