|
|
| File: [Development] / linux-2.4-xfs / include / asm-sparc64 / const.h (download)
Revision 1.1, Tue Aug 15 16:59:39 2006 UTC (11 years, 2 months ago) by nathans.longdrop.melbourne.sgi.com
Merge up to 2.4.33. Merge of 2.4.x-xfs-melb:linux:26774a by kenmcd. |
/* const.h: Macros for dealing with constants. */ #ifndef _SPARC64_CONST_H #define _SPARC64_CONST_H /* Some constant macros are used in both assembler and * C code. Therefore we cannot annotate them always with * 'UL' and other type specificers unilaterally. We * use the following macros to deal with this. */ #ifdef __ASSEMBLY__ #define _AC(X,Y) X #else #define _AC(X,Y) (X##Y) #endif #endif /* !(_SPARC64_CONST_H) */