Opened 14 years ago
Closed 14 years ago
#6418 closed enhancement (fixed)
Missing modfl with patch
Reported by: | MrSunshine | Owned by: | zooey |
---|---|---|---|
Priority: | normal | Milestone: | R1 |
Component: | System/libroot.so | Version: | R1/Development |
Keywords: | Cc: | ||
Blocked By: | Blocking: | ||
Platform: | All |
Description
modfl is missing in haikus glibc
source from
Attachments (1)
Change History (7)
by , 14 years ago
Attachment: | haiku-modfl.patch added |
---|
comment:1 by , 14 years ago
patch: | 0 → 1 |
---|
comment:2 by , 14 years ago
Version: | R1/alpha2 → R1/Development |
---|
comment:3 by , 14 years ago
Owner: | changed from | to
---|---|
Status: | new → assigned |
comment:4 by , 14 years ago
tested using
#include <stdio.h> #include <math.h> int main() { long double d = 6.242341512321321; long double intPart; long double doublePart = modfl(d, &intPart); printf("double: %.15Lf\n", d); printf("doublePart: %.15Lf, intPart: %.15Lf\n", doublePart, intPart); }
gives same result on haiku gcc2 and gcc4 as it does in linux, do not know how much more i can test it? :)
comment:5 by , 14 years ago
Status: | assigned → in-progress |
---|
comment:6 by , 14 years ago
Resolution: | → fixed |
---|---|
Status: | in-progress → closed |
Applied in hrev37904, thanks.
Note:
See TracTickets
for help on using tickets.
Patch to add modfl to haiku libroot.so