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

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _ASM_IA64_DIV64_H
  2. #define _ASM_IA64_DIV64_H
  3. /*
  4.  * Copyright (C) 1999 Hewlett-Packard Co
  5.  * Copyright (C) 1999 David Mosberger-Tang <davidm@hpl.hp.com>
  6.  *
  7.  * vsprintf uses this to divide a 64-bit integer N by a small integer BASE.
  8.  * This is incredibly hard on IA-64...
  9.  */
  10. #define do_div(n,base)
  11. ({
  12. int _res;
  13. _res = ((unsigned long) (n)) % (unsigned) (base);
  14. (n) = ((unsigned long) (n)) / (unsigned) (base);
  15. _res;
  16. })
  17. #endif /* _ASM_IA64_DIV64_H */