div64.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:0k
源码类别:

嵌入式Linux

开发平台:

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