Magellan Linux

Diff of /trunk/mkinitrd-magellan/busybox/libbb/bb_strtod.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 983 by niro, Fri Apr 24 18:33:46 2009 UTC revision 984 by niro, Sun May 30 11:32:42 2010 UTC
# Line 12  Line 12 
12    
13  #define NOT_DIGIT(a) (((unsigned char)(a-'0')) > 9)  #define NOT_DIGIT(a) (((unsigned char)(a-'0')) > 9)
14    
15    #if 0 // UNUSED
16  double FAST_FUNC bb_strtod(const char *arg, char **endp)  double FAST_FUNC bb_strtod(const char *arg, char **endp)
17  {  {
18   double v;   double v;
# Line 36  double FAST_FUNC bb_strtod(const char *a Line 37  double FAST_FUNC bb_strtod(const char *a
37   }   }
38   return v;   return v;
39  }  }
40    #endif
41    
42  #if 0  #if 0
43  /* String to timespec: "NNNN[.NNNNN]" -> struct timespec.  /* String to timespec: "NNNN[.NNNNN]" -> struct timespec.

Legend:
Removed from v.983  
changed lines
  Added in v.984