Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

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