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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * BK Id: SCCS/s.div64.h 1.5 05/17/01 18:14:24 cort
  3.  */
  4. #ifndef __PPC_DIV64
  5. #define __PPC_DIV64
  6. #define do_div(n,base) ({ 
  7. int __res; 
  8. __res = ((unsigned long) n) % (unsigned) base; 
  9. n = ((unsigned long) n) / (unsigned) base; 
  10. __res; })
  11. #endif