Up to[local] /src /lib /libm /src
Request diff between arbitrary revisions
Default branch: MAIN
Revision1.4 / (download) -annotate -[select for diffs],Thu Oct 14 21:30:00 2021 UTC (4 years, 1 month ago) bykettenis
Branch:MAIN
CVS Tags:OPENBSD_7_8_BASE,OPENBSD_7_8,OPENBSD_7_7_BASE,OPENBSD_7_7,OPENBSD_7_6_BASE,OPENBSD_7_6,OPENBSD_7_5_BASE,OPENBSD_7_5,OPENBSD_7_4_BASE,OPENBSD_7_4,OPENBSD_7_3_BASE,OPENBSD_7_3,OPENBSD_7_2_BASE,OPENBSD_7_2,OPENBSD_7_1_BASE,OPENBSD_7_1,HEAD
Changes since1.3: +3 -3 lines
Diff to previous1.3 (colored)
Replacelrint(3),lrintf(3),llrint(3) andllrintf(3) implementations withthe same implementation that we're already using forlrintl(3) andllrintl(3).The old implementations were derived from code from NetBSD that didn't passthe lib/libm/msun/lrint_test regress test. NetBSD replaced theirimplementation with the FreeBSD implementation of this code which we werealready using forlrintl(3) andllrintl(3). This fixes the regress test.ok bluhm@, millert@
Revision1.3 / (download) -annotate -[select for diffs],Fri Mar 15 05:42:38 2019 UTC (6 years, 8 months ago) bykevlo
Branch:MAIN
CVS Tags:OPENBSD_7_0_BASE,OPENBSD_7_0,OPENBSD_6_9_BASE,OPENBSD_6_9,OPENBSD_6_8_BASE,OPENBSD_6_8,OPENBSD_6_7_BASE,OPENBSD_6_7,OPENBSD_6_6_BASE,OPENBSD_6_6,OPENBSD_6_5_BASE,OPENBSD_6_5
Changes since1.2: +1 -4 lines
Diff to previous1.2 (colored)
Remove FBSDID.ok deraadt@
Revision1.2 / (download) -annotate -[select for diffs],Wed Dec 5 23:20:04 2012 UTC (12 years, 11 months ago) byderaadt
Branch:MAIN
CVS Tags:OPENBSD_6_4_BASE,OPENBSD_6_4,OPENBSD_6_3_BASE,OPENBSD_6_3,OPENBSD_6_2_BASE,OPENBSD_6_2,OPENBSD_6_1_BASE,OPENBSD_6_1,OPENBSD_6_0_BASE,OPENBSD_6_0,OPENBSD_5_9_BASE,OPENBSD_5_9,OPENBSD_5_8_BASE,OPENBSD_5_8,OPENBSD_5_7_BASE,OPENBSD_5_7,OPENBSD_5_6_BASE,OPENBSD_5_6,OPENBSD_5_5_BASE,OPENBSD_5_5,OPENBSD_5_4_BASE,OPENBSD_5_4,OPENBSD_5_3_BASE,OPENBSD_5_3
Changes since1.1: +1 -2 lines
Diff to previous1.1 (colored)
Remove excessive sys/cdefs.h inclusionok guenther millert kettenis
Revision1.1 / (download) -annotate -[select for diffs],Wed Jul 6 00:02:42 2011 UTC (14 years, 5 months ago) bymartynas
Branch:MAIN
CVS Tags:OPENBSD_5_2_BASE,OPENBSD_5_2,OPENBSD_5_1_BASE,OPENBSD_5_1,OPENBSD_5_0_BASE,OPENBSD_5_0
Finalize work on the math library. It's time to do this monstercommit, and deal with problems (if any) in tree.Note that this adds the following functions. Ports with hacks mightneed adjustments.nexttoward(3),fma(3),nexttowardf(3),fmaf(3),acoshl(3),asinhl(3),atanhl(3),coshl(3),sinhl(3),tanhl(3),expl(3),expm1l(3),logl(3),log10l(3),log1pl(3),log2l(3),modfl(3),cbrtl(3),hypotl(3),powl(3),erfl(3),erfcl(3),lgammal(3),tgammal(3),ceill(3),floorl(3),lrintl(3),llrintl(3),roundl(3),lroundl(3),llroundl(3),truncl(3),fmodl(3),remainderl(3),remquol(3),nextafterl(3),nexttowardl(3),fmal(3).With this commit, our library implements all functionality requiredby C99. Documentation bits will follow.