Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

  1. #ifndef __LIBC_ASM_H
  2. #define __LIBC_ASM_H
  3.  
  4. #include __DEV_CONFIG_H
  5.  
  6. #ifndef NEEDS_UNDERSCORES
  7.  
  8. #define C_SYM(x)        x
  9. #else
  10.  
  11. #define C_SYM(x)        _##x
  12.  
  13. #endif
  14.  
  15. #define MK_C_SYM(x)     C_SYM(x) : ; \
  16.                         .globl C_SYM(x)
  17.  
  18. #endif
  19.