timer.h 256 B

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