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

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef __SPARC64_DIV64
  2. #define __SPARC64_DIV64
  3. /*
  4.  * Hey, we're already 64-bit, no
  5.  * need to play games..
  6.  */
  7. #define do_div(n,base) ({ 
  8. int __res; 
  9. __res = ((unsigned long) n) % (unsigned) base; 
  10. n = ((unsigned long) n) / (unsigned) base; 
  11. __res; })
  12. #endif /* __SPARC64_DIV64 */