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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * This file is subject to the terms and conditions of the GNU General Public
  3.  * License.  See the file "COPYING" in the main directory of this archive
  4.  * for more details.
  5.  */
  6. #ifndef _ASM_DIV64_H
  7. #define _ASM_DIV64_H
  8. /*
  9.  * Hey, we're already 64-bit, no
  10.  * need to play games..
  11.  */
  12. #define do_div(n,base) ({ 
  13. int __res; 
  14. __res = ((unsigned long) n) % (unsigned) base; 
  15. n = ((unsigned long) n) / (unsigned) base; 
  16. __res; })
  17. #endif /* _ASM_DIV64_H */