Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 7 Mar 2005 04:59:11 +0000 (UTC)
From:      David Schultz <das@FreeBSD.org>
To:        src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
Subject:   cvs commit: src/lib/msun Makefile
Message-ID:  <200503070459.j274xBlF053544@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
das         2005-03-07 04:59:11 UTC

  FreeBSD src repository

  Modified files:
    lib/msun             Makefile 
  Log:
  - Remove s_ldexpf.c (now aliased to scalbn.)
  - Add nexttoward{,f,l} and nextafterl.  On all platforms,
    nexttowardl is an alias for nextafterl.
  - Add fmal.
  - Add man pages for new routines: fmal, nextafterl,
    nexttoward{,f,l}, scalb{,l}nl.
  
  Note that on platforms where long double is the same as double, we
  generally just alias the double versions of the routines, since doing
  so avoids extra work on the source code level and redundant code in
  the binary.  In particular:
  
                  ldbl53          ldbl64/113
  fmal            s_fma.c         s_fmal.c
  ldexpl          s_scalbn.c      s_scalbnl.c
  nextafterl      s_nextafter.c   s_nextafterl.c
  nexttoward      s_nextafter.c   s_nexttoward.c
  nexttowardf     s_nexttowardf.c s_nexttowardf.c
  nexttowardl     s_nextafter.c   s_nextafterl.c
  scalbnl         s_scalbn.c      s_scalbnl.c
  
  Revision  Changes    Path
  1.65      +12 -7     src/lib/msun/Makefile



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200503070459.j274xBlF053544>