/* * For compatibility with older kernels etc. */ #ifndef SYSDEP_H #define SYSDEP_H #ifndef SET_MODULE_OWNER # define SET_MODULE_OWNER(structure) /* do nothing, there is no owner field in 2.2 */ #endif #ifndef MODULE_LICENSE # define MODULE_LICENSE(l) /* empty */ #endif #ifndef min # define min(x,y) ((x) < (y) ? (x) : (y)) #endif #ifndef max # define max(x,y) ((x) > (y) ? (x) : (y)) #endif #endif