Files
linux-apfs/include/linux/const.h
T

25 lines
596 B
C
Raw Normal View History

/* const.h: Macros for dealing with constants. */
2007-05-08 00:31:11 -07:00
#ifndef _LINUX_CONST_H
#define _LINUX_CONST_H
/* Some constant macros are used in both assembler and
* C code. Therefore we cannot annotate them always with
2007-05-08 00:31:11 -07:00
* 'UL' and other type specifiers unilaterally. We
* use the following macros to deal with this.
2008-01-30 13:32:42 +01:00
*
* Similarly, _AT() will cast an expression with a type in C, but
* leave it unchanged in asm.
*/
#ifdef __ASSEMBLY__
#define _AC(X,Y) X
2008-01-30 13:32:42 +01:00
#define _AT(T,X) X
#else
#define __AC(X,Y) (X##Y)
#define _AC(X,Y) __AC(X,Y)
2008-01-30 13:32:42 +01:00
#define _AT(T,X) ((T)(X))
#endif
2007-05-08 00:31:11 -07:00
#endif /* !(_LINUX_CONST_H) */