div64.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:0k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef __PPC_DIV64
  2. #define __PPC_DIV64
  3. /* Copyright 2001 PPC64 Team, IBM Corp
  4.  *
  5.  * This program is free software; you can redistribute it and/or
  6.  * modify it under the terms of the GNU General Public License
  7.  * as published by the Free Software Foundation; either version
  8.  * 2 of the License, or (at your option) any later version.
  9.  */
  10. #define do_div(n,base) ({ 
  11. int __res; 
  12. __res = ((unsigned long) (n)) % (unsigned) (base); 
  13. (n) = ((unsigned long) (n)) / (unsigned) (base); 
  14. __res; })
  15. #endif