div64.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:0k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef __ASM_SH_DIV64
  2. #define __ASM_SH_DIV64
  3. #define do_div(n,base) ({ 
  4. int __res; 
  5. __res = ((unsigned long) n) % (unsigned) base; 
  6. n = ((unsigned long) n) / (unsigned) base; 
  7. __res; })
  8. #endif /* __ASM_SH_DIV64 */