const.h 432 B

12345678910111213141516171819
  1. /* const.h: Macros for dealing with constants. */
  2. #ifndef _SPARC64_CONST_H
  3. #define _SPARC64_CONST_H
  4. /* Some constant macros are used in both assembler and
  5. * C code. Therefore we cannot annotate them always with
  6. * 'UL' and other type specificers unilaterally. We
  7. * use the following macros to deal with this.
  8. */
  9. #ifdef __ASSEMBLY__
  10. #define _AC(X,Y) X
  11. #else
  12. #define _AC(X,Y) (X##Y)
  13. #endif
  14. #endif /* !(_SPARC64_CONST_H) */