In /usr/include/asm/swab.h I found following code:
static __inline__ __u32 __arch_swab32(__u32 val)
{
__asm__("bswapl %0" : "=r" (val) : "0" (val));
return val;
}
#define __arch_swab32 __arch_swab32
What is the meaning of the last line, defining a name as itself?