Home | History | Annotate | Download | only in bits
      1 #ifndef _BITS_COMPILER_H
      2 #define _BITS_COMPILER_H
      3 
      4 #ifndef ASSEMBLY
      5 
      6 /** Declare a function with standard calling conventions */
      7 #define __asmcall __attribute__ (( regparm(0) ))
      8 
      9 /** Declare a function with libgcc implicit linkage */
     10 #define __libgcc
     11 
     12 #endif /* ASSEMBLY */
     13 
     14 #endif /* _BITS_COMPILER_H */
     15