[BACK]Return to s_ceil.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / lib / libm / src

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/lib/libm/src/s_ceil.c between version 1.10 and 1.11

version 1.10, 1999/07/02 15:37:42 version 1.11, 2002/05/26 22:01:54
Line 27  __RCSID("$NetBSD$");
Line 27  __RCSID("$NetBSD$");
 #include "math.h"  #include "math.h"
 #include "math_private.h"  #include "math_private.h"
   
 #ifdef __STDC__  
 static const double huge = 1.0e300;  static const double huge = 1.0e300;
 #else  
 static double huge = 1.0e300;  
 #endif  
   
 #ifdef __STDC__  double
         double ceil(double x)  ceil(double x)
 #else  
         double ceil(x)  
         double x;  
 #endif  
 {  {
         int32_t i0,i1,j0;          int32_t i0,i1,j0;
         u_int32_t i,j;          u_int32_t i,j;

Legend:
Removed from v.1.10  
changed lines
  Added in v.1.11

CVSweb <webmaster@jp.NetBSD.org>