URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [linux/] [linux-2.4/] [include/] [linux/] [modsetver.h] - Rev 1781
Go to most recent revision | Compare with Previous | Blame | View Log
/* Symbol versioning nastiness. */ #define __SYMBOL_VERSION(x) __ver_ ## x #define __VERSIONED_SYMBOL2(x,v) x ## _R ## v #define __VERSIONED_SYMBOL1(x,v) __VERSIONED_SYMBOL2(x,v) #define __VERSIONED_SYMBOL(x) __VERSIONED_SYMBOL1(x,__SYMBOL_VERSION(x)) #ifndef _set_ver #define _set_ver(x) __VERSIONED_SYMBOL(x) #endif
Go to most recent revision | Compare with Previous | Blame | View Log