1 #ifndef __LINUX_TIMER_H__ 2 #define __LINUX_TIMER_H__ 3 4 /* Not yet */ 5 6 #if defined (__GNUC__) 7 struct timer_list { } ; 8 #elif defined (MSVC) 9 struct timer_list {int no; } ; 10 #else 11 #error "please use a right C compiler" 12 #endif 13 14 #endif /* __LINUX_TIMER_H__ */ 15 16