Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

compiler.h 305B

1234567891011121314
  1. #ifndef _BITS_COMPILER_H
  2. #define _BITS_COMPILER_H
  3. #ifndef ASSEMBLY
  4. /** Declare a function with standard calling conventions */
  5. #define __asmcall __attribute__ (( regparm(0) ))
  6. /** Declare a function with libgcc implicit linkage */
  7. #define __libgcc
  8. #endif /* ASSEMBLY */
  9. #endif /* _BITS_COMPILER_H */