[BACK]Return to vsprintf.c CVS log [TXT][DIR] Up to [local] / prex-old / sys / lib

Diff for /prex-old/sys/lib/vsprintf.c between version 1.1.1.1 and 1.1.1.1.2.1

version 1.1.1.1, 2008/06/03 10:38:46 version 1.1.1.1.2.1, 2008/08/13 17:12:32
Line 36 
Line 36 
   
 #define isdigit(c)  ((unsigned)((c) - '0') < 10)  #define isdigit(c)  ((unsigned)((c) - '0') < 10)
   
 static int  static u_long
 divide(long *n, int base)  divide(long *n, int base)
 {  {
         int res;          u_long res;
   
         res = ((u_long)*n) % base;          res = ((u_long)*n) % base;
         *n = ((u_long)*n) / base;          *n = ((u_long)*n) / base;

Legend:
Removed from v.1.1.1.1  
changed lines
  Added in v.1.1.1.1.2.1

CVSweb