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

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef __ASM_CRIS_DIV64
  2. #define __ASM_CRIS_DIV64
  3. /* copy from asm-arm */
  4. /* We're not 64-bit, but... */
  5. #define do_div(n,base)
  6. ({
  7. int __res;
  8. __res = ((unsigned long)n) % (unsigned int)base;
  9. n = ((unsigned long)n) / (unsigned int)base;
  10. __res;
  11. })
  12. #endif