[BACK]Return to g_ffmt.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / lib / libc / gdtoa

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

Diff for /src/lib/libc/gdtoa/g_ffmt.c between version 1.1 and 1.2

version 1.1, 2006/01/25 15:18:44 version 1.2, 2008/03/21 23:13:48
Line 86  g_ffmt(char *buf, float *f, int ndig, un
Line 86  g_ffmt(char *buf, float *f, int ndig, un
                 }                  }
         i = STRTOG_Normal;          i = STRTOG_Normal;
         s = gdtoa(&fpi, ex, bits, &i, mode, ndig, &decpt, &se);          s = gdtoa(&fpi, ex, bits, &i, mode, ndig, &decpt, &se);
           if (s == NULL)
                   return NULL;
         return g__fmt(buf, s, se, decpt, sign);          return g__fmt(buf, s, se, decpt, sign);
         }          }

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2

CVSweb <webmaster@jp.NetBSD.org>