[BACK]Return to stdlib.h CVS log [TXT][DIR] Up to [local] / src / include

Diff for /src/include/stdlib.h between version 1.36 and 1.37

version 1.36, 2006/01/06 18:53:04 version 1.37, 2006/01/13 17:58:09
Line 62 
Line 62 
         long rem;               /* remainder */          long rem;               /* remainder */
 } ldiv_t;  } ldiv_t;
   
   #if __ISO_C_VISIBLE >= 1999
   typedef struct {
           long long quot;         /* quotient */
           long long rem;          /* remainder */
   } lldiv_t;
   #endif
   
 #if __BSD_VISIBLE  #if __BSD_VISIBLE
 typedef struct {  typedef struct {
         quad_t quot;            /* quotient */          quad_t quot;            /* quotient */
Line 182 
Line 189 
 /*  /*
  * ISO C99   * ISO C99
  */   */
 #if __BSD_VISIBLE || __ISO_C_VISIBLE >= 1999  #if __ISO_C_VISIBLE >= 1999
 long long  long long
          atoll(const char *);           atoll(const char *);
 long long  long long

Legend:
Removed from v.1.36  
changed lines
  Added in v.1.37