Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

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