forked from lattera/glibc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
13462 lines (10947 loc) · 484 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2012-05-10 Paul Eggert <[email protected]>
[BZ #3440]
* locale/bits/locale.h (__LC_CTYPE, __LC_NUMERIC, __LC_TIME)
(__LC_COLLATE, __LC_MONETARY, __LC_MESSAGES, __LC_ALL, __LC_PAPER)
(__LC_NAME, __LC_ADDRESS, __LC_TELEPHONE, __LC_MEASUREMENT)
(__LC_IDENTIFICATION): Make these macros useful in #if
expressions, as required by C99.
2012-05-10 Andreas Schwab <[email protected]>
* sunrpc/Makefile (extra-objs) [$(build-shared) = yes]: Add
$(addsuffix .os,$(rpc-compat-routines)). Move include ../Rules
after this.
2012-05-09 H.J. Lu <[email protected]>
* stdlib/longlong.h: Updated from GCC.
2012-05-09 Andreas Jaeger <[email protected]>
* nscd/nscd.c (run_modes): Make named enum, reorder so that
default is first entry.
(run_mode): Set type.
(main): Remove informal message about syslog.
(options): Fix typo.
[BZ #14053]
* sysdeps/x86_64/fpu/bits/mathinline.h (lrintf): Add __volatile
to asm.
(lrint): Likewise.
(llrintf): Likewise.
(llrint): Likewise.
(rint): Likewise.
(rintf): Likewise.
(nearbyint): Likewise.
(nearbyintf): Likewise.
2012-05-09 Andreas Jaeger <[email protected]>
Pedro Alves <[email protected]>
* nscd/nscd.c (run_mode): Use enum.
(main): Cleanup coding style issue.
2012-05-09 Alexandre Oliva <[email protected]>
Andreas Jaeger <[email protected]>
* nscd/nscd.c (go_background): Replaced with...
(run_mode): ... this.
(RUN_FOREGROUND, RUN_DAEMONIZE, RUN_DEBUG): Add.
(options): Add -F --foreground.
(main): Implement it.
(parse_opt): Parse it.
2012-05-09 Andreas Jaeger <[email protected]>
[BZ #14083]
* string/bits/string2.h (strspn) [__GNUC_PREREQ(3, 2) &&
!_HAVE_STRING_ARCH_strspn]: Cast zero to size_t to avoid
-Wconversion warning.
(strspn) [!__GNUC_PREREQ(3, 2) && !_HAVE_STRING_ARCH_strspn]:
Likewise.
2012-05-09 Joseph Myers <[email protected]>
* conform/data/locale.h-data (NULL): Use macro-constant. Require
== 0.
(LC_ALL): Use macro-int-constant.
(LC_COLLATE): Likewise.
(LC_CTYPE): Likewise.
(LC_MESSAGES): Likewise.
(LC_MONETARY): Likewise.
(LC_NUMERIC): Likewise.
(LC_TIME): Likewise.
[ISO || ISO99 || ISO11] (LC_MESSAGES): Do not require.
(LC_*): Change to LC_[ABCDEFGHIJKLMNOPQRSTUVWXYZ]*.
[ISO || ISO99 || ISO11] (*_t): Do not allow.
* conform/data/math.h-data (HUGE_VAL): Use macro-constant.
Specify type.
[C99-based standards] (float_t): Expect type.
[C99-based standards] (double_t): Expect type.
[C99-based standards] (HUGE_VALF): Use macro-constant. Specify
type.
[C99-based standards] (HUGE_VALL): Likewise.
[C99-based standards] (INFINITY): Likewise.
[C99-based standards] (NAN): Likewise.
[C99-based standards] (FP_INFINITE): Use macro-int-constant.
[C99-based standards] (FP_NAN): Likewise.
[C99-based standards] (FP_NORMAL): Likewise.
[C99-based standards] (FP_SUBNORMAL): Likewise.
[C99-based standards] (FP_ZERO): Likewise.
[C99-based standards] (FP_FAST_FMA): Use
optional-macro-int-constant. Specify type. Require == 1.
[C99-based standards] (FP_FAST_FMAF): Likewise.
[C99-based standards] (FP_FAST_FMAL): Likewise.
[C99-based standards] (FP_ILOGB0): Use macro-int-constant.
[C99-based standards] (FP_ILOGBNAN): Likewise.
[C99-based standards] (MATH_ERRNO): Use macro-int-constant.
Specify type.
[C99-based standards] (MATH_ERREXCEPT): Likewise.
[C99-based standards] (math_errhandling): Specify type.
[ISO99 || ISO11] (signgam): Do not allow.
[non-C99-based standards] (copysignf): Do not allow.
[non-C99-based standards] (exp2f): Likewise.
[non-C99-based standards] (log2f): Likewise.
[non-C99-based standards] (modff): Allow.
[non-C99-based standards] (erff): Do not allow.
[non-C99-based standards] (erfcf): Likewise.
[non-C99-based standards] (gammaf): Likewise.
[non-C99-based standards] (hypotf): Likewise.
[non-C99-based standards] (j0f): Likewise.
[non-C99-based standards] (j1f): Likewise.
[non-C99-based standards] (jnf): Likewise.
[non-C99-based standards] (lgammaf): Likewise.
[non-C99-based standards] (tgammaf): Likewise.
[non-C99-based standards] (y0f): Likewise.
[non-C99-based standards] (y1f): Likewise.
[non-C99-based standards] (ynf): Likewise.
[non-C99-based standards] (isnanf): Likewise.
[non-C99-based standards] (acoshf): Likewise.
[non-C99-based standards] (asinhf): Likewise.
[non-C99-based standards] (atanhf): Likewise.
[non-C99-based standards] (cbrtf): Likewise.
[non-C99-based standards] (expm1f): Likewise.
[non-C99-based standards] (ilogbf): Likewise.
[non-C99-based standards] (log1pf): Likewise.
[non-C99-based standards] (logbf): Likewise.
[non-C99-based standards] (nextafterf): Likewise.
[non-C99-based standards] (remainderf): Likewise.
[non-C99-based standards] (rintf): Likewise.
[non-C99-based standards] (scalbf): Likewise.
[non-C99-based standards] (copysignl): Likewise.
[non-C99-based standards] (exp2l): Likewise.
[non-C99-based standards] (log2l): Likewise.
[non-C99-based standards] (modfl): Allow.
[non-C99-based standards] (erfl): Do not allow.
[non-C99-based standards] (erfcl): Likewise.
[non-C99-based standards] (gammal): Likewise.
[non-C99-based standards] (hypotl): Likewise.
[non-C99-based standards] (j0l): Likewise.
[non-C99-based standards] (j1l): Likewise.
[non-C99-based standards] (jnl): Likewise.
[non-C99-based standards] (lgammal): Likewise.
[non-C99-based standards] (tgammal): Likewise.
[non-C99-based standards] (y0l): Likewise.
[non-C99-based standards] (y1l): Likewise.
[non-C99-based standards] (ynl): Likewise.
[non-C99-based standards] (isnanl): Likewise.
[non-C99-based standards] (acoshl): Likewise.
[non-C99-based standards] (asinhl): Likewise.
[non-C99-based standards] (atanhl): Likewise.
[non-C99-based standards] (cbrtl): Likewise.
[non-C99-based standards] (expm1l): Likewise.
[non-C99-based standards] (ilogbl): Likewise.
[non-C99-based standards] (log1pl): Likewise.
[non-C99-based standards] (logbl): Likewise.
[non-C99-based standards] (nextafterl): Likewise.
[non-C99-based standards] (remainderl): Likewise.
[non-C99-based standards] (rintl): Likewise.
[non-C99-based standards] (scalbl): Likewise.
[ISO || ISO99 || ISO11] (*_t): Do not allow.
[non-C99-based standards] (FP_*): Do not allow.
[C99-based standards] (FP_*): Change to
FP_[ABCDEFGHIJKLMNOPQRSTUVWXYZ]*.
* conform/data/setjmp.h-data [ISO || ISO99 || ISO11] (*_t): Do not
allow.
* conform/data/signal.h-data (SIG_DFL): Use macro-constant.
(SIG_ERR): Likewise.
[X/Open-based standards] (SIG_HOLD): Likewise.
(SIG_IGN): Likewise.
(SIGABRT): Use macro-int-constant. Specify type. Require
positive value.
(SIGFPE): Likewise.
(SIGILL): Likewise.
(SIGINT): Likewise.
(SIGSEGV): Likewise.
(SIGTER): Likewise.
[!ISO && !ISO99 && !ISO11] (SIGALRM): Likewise.
[!ISO && !ISO99 && !ISO11] (SIGHUP): Likewise.
[!ISO && !ISO99 && !ISO11] (SIGIO): Likewise.
[!ISO && !ISO99 && !ISO11] (SIGKILL): Likewise.
[!ISO && !ISO99 && !ISO11] (SIGPIPE): Likewise.
[!ISO && !ISO99 && !ISO11] (SIGQUIT): Likewise.
[!ISO && !ISO99 && !ISO11] (SIGUSR1): Likewise.
[!ISO && !ISO99 && !ISO11] (SIGUSR2): Likewise.
[!ISO && !ISO99 && !ISO11] (SIGCHLD): Likewise.
[!ISO && !ISO99 && !ISO11] (SIGCONT): Likewise.
[!ISO && !ISO99 && !ISO11] (SIGSTOP): Likewise.
[!ISO && !ISO99 && !ISO11] (SIGTSTP): Likewise.
[!ISO && !ISO99 && !ISO11] (SIGTTIN): Likewise.
[!ISO && !ISO99 && !ISO11] (SIGTTOU): Likewise.
[!ISO && !ISO99 && !ISO11] (SIGBUS): Likewise.
[!ISO && !ISO99 && !ISO11] (SIGPOLL): Likewise.
[!ISO && !ISO99 && !ISO11] (SIGPROF): Likewise.
[!ISO && !ISO99 && !ISO11] (SIGSYS): Likewise.
[X/Open-based standards] (SIGTRAP): Likewise.
[!ISO && !ISO99 && !ISO11] (SIGURG): Likewise.
[!ISO && !ISO99 && !ISO11] (SIGVTALRM): Likewise.
[!ISO && !ISO99 && !ISO11] (SIGXCPU): Likewise.
[!ISO && !ISO99 && !ISO11] (SIGXFSZ): Likewise.
* conform/data/stdarg.h-data [ISO || ISO99 || ISO11] (*_t): Do not
allow.
2012-05-08 Ian Wienand <[email protected]>
[BZ #14080]
* time/tzset.c (__tzset_parse_tz): Update default rules for
daylight time changes in the Energy Policy Act of 2005.
2012-05-09 Andreas Jaeger <[email protected]>
[BZ #13983]
* elf/ldconfig.c (parse_conf): Change string to make clear that
ldconfig only issued a warning if ld.so.conf does not exist.
2012-05-08 David S. Miller <[email protected]>
* sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floor-vis3.S: Use
movxtod instead of popping the value on the stack.
* sysdeps/sparc/fpu/libm-test-ulps: Update.
2012-05-08 Carlos O'Donell <[email protected]>
* config.h.in: Add HAVE_ARM_PCS_VFP.
2012-05-08 Roland Mc Grath <[email protected]>
[BZ #13979]
* include/features.h: Warn if user requests __FORTIFY_SOURCE
checking but the checks are disabled for any reason.
2012-05-08 H.J. Lu <[email protected]>
* sysdeps/x86_64/dl-machine.h: Replace Elf64_XXX with ElfW(XXX)
and ELF64_R_TYPE with ELFW(R_TYPE).
2012-05-08 Joseph Myers <[email protected]>
* sysdeps/unix/sysv/syscalls.list (pause): Remove.
(ulimit): Likewise.
* sysdeps/unix/sysv/syscalls.list (setrlimit): Remove.
(settimeofday): Likewise.
2012-05-08 Mike Frysinger <[email protected]>
* inet/arpa/tftp.h (struct tftphdr): Rename th_u to th_u1. Add
a struct th_u2 inside the union, and move tu_block/tu_code into
a new th_u3 union of tu_block/tu_code inside of that. Move
th_data[1] into the th_u2 as tu_data[0]. Change tu_stuff[1] to
tu_stuff[0]. Add a new tu_padding[4] to keep sizeof() the same.
(th_block): Change to th_u1.th_u2.th_u3.tu_block.
(th_code): Change to th_u1.th_u2.th_u3.tu_code.
(th_stuff): Change to th_u1.tu_stuff.
(th_data): Define.
(th_msg): Change to th_u1.th_u2.tu_data.
2012-05-07 David S. Miller <[email protected]>
* sysdeps/sparc/fpu/libm-test-ulps: Update.
[BZ #14074]
* sysdeps/sparc/sysdep.h (SPARC_PIC_THUNK_CALL): New macro.
(SETUP_PIC_REG): Use it.
(SETUP_PIC_REG_LEAF): Use it.
2012-05-07 Joseph Myers <[email protected]>
[BZ #13885]
[BZ #13923]
* sysdeps/i386/fpu/e_expl.S (IEEE754_EXPL): Define conditional on
USE_AS_EXPM1L.
(EXPL_FINITE): Likewise.
(FLDLOG): Likewise.
(IEEE754_EXPL) [USE_AS_EXPM1L]: Support use as expm1l.
* sysdeps/i386/fpu/s_expm1l.S: Define USE_AS_EXPM1L and include
e_expl.S.
* sysdeps/x86_64/fpu/e_expl.S (IEEE754_EXPL): Define conditional on
USE_AS_EXPM1L.
(EXPL_FINITE): Likewise.
(FLDLOG): Likewise.
(IEEE754_EXPL) [USE_AS_EXPM1L]: Support use as expm1l.
* sysdeps/x86_64/fpu/s_expm1l.S: Define USE_AS_EXPM1L and include
e_expl.S.
* math/libm-test.inc (expm1_test): Add more tests. Do not disable
test of -max_value argument for long double.
* sysdeps/i386/fpu/libm-test-ulps: Update.
* sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
2012-05-06 David S. Miller <[email protected]>
* scripts/data/localplt-sparc-linux-gnu.data: Add '?' markers to
quad soft-float symbols whose references which are compiler
generated.
* scripts/data/localplt-sparc64-linux-gnu.data: Likewise.
2012-05-06 Joseph Myers <[email protected]>
[BZ #13884]
[BZ #13914]
* sysdeps/i386/fpu/e_expl.S (IEEE754_EXPL): Define conditional on
USE_AS_EXP10L.
(EXPL_FINITE): Likewise.
(FLDLOG): Likewise.
(c0): Likewise.
(c1): Likewise.
(__ieee754_expl): Change to IEEE754_EXPL. Use FLDLOG macro.
Adjust comments for base varying.
(__expl_finite): Change alias to EXPL_FINITE.
* sysdeps/i386/fpu/e_exp10l.S: Define USE_AS_EXP10L and include
e_expl.S.
* sysdeps/ieee754/dbl-64/e_exp10.c: New file.
* sysdeps/ieee754/ldbl-128/e_exp10l.c: Likewise.
* sysdeps/ieee754/ldbl-128ibm/e_exp10l.c: Likewise.
* sysdeps/x86_64/fpu/e_exp10l.S: Likewise.
* sysdeps/x86_64/fpu/e_expl.S (IEEE754_EXPL): Define conditional on
USE_AS_EXP10L.
(EXPL_FINITE): Likewise.
(FLDLOG): Likewise.
(c0): Likewise.
(c1): Likewise.
(__ieee754_expl): Change to IEEE754_EXPL. Use FLDLOG macro.
Adjust comments for base varying.
(__expl_finite): Change alias to EXPL_FINITE.
* math/libm-test.inc (exp10_test): Add more tests. Do not disable
tests for bugs.
* sysdeps/x86_64/fpu/libm-test-ulps: Update.
[BZ #14064]
* math/libm-test.inc (check_float_internal): Correct ulp
calculation for subnormal expected results.
2012-05-06 Andreas Jaeger <[email protected]>
* Makeconfig (+math-flags): New, set to -frounding-math.
(+cflags): Add +math-flags so that all of glibc gets compiled with
it.
* sysdeps/x86_64/fpu/libm-test-ulps: Updated.
2012-05-05 Joseph Myers <[email protected]>
* math/libm-test.inc (hypot_test) [TEST_DOUBLE && TEST_INLINE]:
Disable one test.
[BZ #13787]
[BZ #13922]
[BZ #14036]
* sysdeps/i386/fpu/e_expl.S (csat): New constant.
(__ieee754_expl): Allow for and saturate large arguments.
* sysdeps/ieee754/dbl-64/w_exp.c (o_threshold): Remove variable.
(u_threshold): Likewise.
(__exp): Call __ieee754_exp before checking for overflow and
underflow.
* sysdeps/ieee754/flt-32/w_expf.c (o_threshold): Remove variable.
(u_threshold): Likewise.
(__expf): Call __ieee754_expf before checking for overflow and
underflow.
* sysdeps/ieee754/ldbl-96/w_expl.c (o_threshold): Remove variable.
(u_threshold): Likewise.
(__expl): Call __ieee754_expl before checking for overflow and
underflow.
* sysdeps/x86_64/fpu/e_expl.S (csat): New constant.
(__ieee754_expl): Allow for and saturate large arguments.
* math/libm-test.inc (exp_test): Add another test. Do not allow
missing overflow exception on overflow.
(expm1_test): Do not allow missing overflow exception on overflow.
* sysdeps/i386/fpu/e_expl.c: Move to ...
* sysdeps/i386/fpu/e_expl.S: ... here. Write directly in assembly
rather than using inline asm.
* sysdeps/x86_64/fpu/e_expl.c: Remove file.
* sysdeps/x86_64/fpu/e_expl.S: Copy from
sysdeps/i386/fpu/e_expl.S, adjusted for x86_64.
* sysdeps/unix/sysv/syscalls.list (ftime): Remove.
(nice): Likewise.
(poll): Likewise.
(signal): Likewise.
(time): Likewise.
(times): Likewise.
2012-05-04 Joseph Myers <[email protected]>
* sysdeps/unix/syscalls.list (adjtime): Add entry from
sysdeps/unix/common/syscalls.list.
(fchmod): Likewise.
(fchown): Likewise.
(ftruncate): Likewise.
(getrusage): Likewise.
(gettimeofday): Likewise.
(setpgid): Likewise.
(setregid): Likewise.
(setreuid): Likewise.
(sigaction): Likewise.
(truncate): Likewise.
(vhangup): Likewise.
* sysdeps/unix/common/syscalls.list: Remove file.
* sysdeps/unix/bsd/Implies: Don't include unix/common.
* sysdeps/unix/sysv/linux/Implies: Likewise.
2012-05-04 H.J. Lu <[email protected]>
* sysdeps/unix/sysv/linux/x86_64/nptl/ld.abilist: Moved to ...
* sysdeps/unix/sysv/linux/x86_64/64/nptl/ld.abilist: Here.
* sysdeps/unix/sysv/linux/x86_64/nptl/libBrokenLocale.abilist:
Moved to ...
* sysdeps/unix/sysv/linux/x86_64/64/nptl/libBrokenLocale.abilist:
Here.
* sysdeps/unix/sysv/linux/x86_64/nptl/libanl.abilist: Moved
to ...
* sysdeps/unix/sysv/linux/x86_64/64/nptl/libanl.abilist: Here.
* sysdeps/unix/sysv/linux/x86_64/nptl/libc.abilist: Moved
to ...
* sysdeps/unix/sysv/linux/x86_64/64/nptl/libc.abilist: Here.
* sysdeps/unix/sysv/linux/x86_64/nptl/libcrypt.abilist: Moved
to ...
* sysdeps/unix/sysv/linux/x86_64/64/nptl/libcrypt.abilist: Here.
* sysdeps/unix/sysv/linux/x86_64/nptl/libdl.abilist: Moved
to ...
* sysdeps/unix/sysv/linux/x86_64/64/nptl/libdl.abilist: Here.
* sysdeps/unix/sysv/linux/x86_64/nptl/libm.abilist: Moved
to ...
* sysdeps/unix/sysv/linux/x86_64/64/nptl/libm.abilist: Here.
* sysdeps/unix/sysv/linux/x86_64/nptl/libnsl.abilist: Moved
to ...
* sysdeps/unix/sysv/linux/x86_64/64/nptl/libnsl.abilist: Here.
* sysdeps/unix/sysv/linux/x86_64/nptl/libpthread.abilist: Moved
to ...
* sysdeps/unix/sysv/linux/x86_64/64/nptl/libpthread.abilist:
Here.
* sysdeps/unix/sysv/linux/x86_64/nptl/libresolv.abilist: Moved
to ...
* sysdeps/unix/sysv/linux/x86_64/64/nptl/libresolv.abilist:
Here.
* sysdeps/unix/sysv/linux/x86_64/nptl/librt.abilist: Moved
to ...
* sysdeps/unix/sysv/linux/x86_64/64/nptl/librt.abilist: Here.
* sysdeps/unix/sysv/linux/x86_64/nptl/libthread_db.abilist:
Moved to ...
* sysdeps/unix/sysv/linux/x86_64/64/nptl/libthread_db.abilist:
Here.
* sysdeps/unix/sysv/linux/x86_64/nptl/libutil.abilist: Moved
to ...
* sysdeps/unix/sysv/linux/x86_64/64/nptl/libutil.abilist: Here.
2012-05-04 Joseph Myers <[email protected]>
* sysdeps/unix/common/bits/dirent.h: Remove file.
* sysdeps/unix/common/bits/fcntl.h: Likewise.
* sysdeps/unix/bsd/bits/dirent.h: Remove file.
* sysdeps/unix/bsd/bits/fcntl.h: Likewise.
* sysdeps/unix/bsd/bsd4.4/isatty.c: Likewise.
* sysdeps/unix/bsd/isatty.c: Likewise.
* sysdeps/unix/bsd/tcdrain.c: Likewise.
* sysdeps/unix/bsd/tcgetattr.c: Likewise.
* sysdeps/unix/bsd/tcsetattr.c: Likewise.
2012-05-04 Adhemerval Zanella <[email protected]>
[BZ #13563]
* sysdeps/ieee754/ldbl-128ibm/e_acosl.c (__ieee754_acosl): Fix
long double comparison inaccuracies.
* sysdeps/ieee754/ldbl-128ibm/e_asinl.c (__ieee754_asinl): Likewise.
* sysdeps/powerpc/fpu/libm-test-ulps: Update.
2012-05-04 Andreas Schwab <[email protected]>
* sysdeps/unix/make-syscalls.sh: Fix check for version aliases.
* sysdeps/unix/sysv/linux/i386/syscalls.list: Revert last change.
2012-05-04 Joseph Myers <[email protected]>
[BZ #14049]
* stdlib/strtod_l.c (____STRTOF_INTERNAL): Check for trailing
nonzero digits before rounding a hex value.
* stdlib/tst-strtod.c (tests): Add another test.
2012-05-03 Andreas Krebbel <[email protected]>
* sysdeps/s390/fpu/libm-test-ulps: Update.
2012-05-03 Andreas Jaeger <[email protected]>
* malloc/mcheck.c (mcheck): Add barrier so that malloc/free pair
does not get optimized out.
(malloc_opt_barrier): New.
2012-05-03 Andreas Jaeger <[email protected]>
Roland McGrath <[email protected]>
* Makerules (.PRECIOUS): Add %.symlist pattern to prevent
intermediate file deletion.
(generated): Add .symlist files.
2012-05-03 Joseph Myers <[email protected]>
[BZ #13775]
* libio/bits/stdio-ldbl.h [__USE_XOPEN2K8] (__dprintf_chk):
Redirect under this condition.
[__USE_XOPEN2K8] (__vdprintf_chk): Likewise.
[__USE_GNU] (__dprintf_chk): Not under this condition.
[__USE_GNU] (__vdprintf_chk): Likewise.
* libio/bits/stdio2.h [__USE_XOPEN2K8] (__dprintf_chk): Declare
under this condition.
[__USE_XOPEN2K8] (__vdprintf_chk): Likewise.
[__USE_XOPEN2K8] (dprintf): Define under this condition.
[__USE_XOPEN2K8] (vdprintf): Likewise.
[__USE_GNU] (__dprintf_chk): Not under this condition.
[__USE_GNU] (__vdprintf_chk): Likewise.
[__USE_GNU] (dprintf): Likewise.
[__USE_GNU] (vdprintf): Likewise.
2012-05-03 Roland McGrath <[email protected]>
* elf/Makefile (common-generated): Set this instead of generated for
.dyn, .phdr, .jmprel files. Remove $(common-objpfx) from the
$(all-built-dso)-derived lists.
2012-05-03 Andreas Jaeger <[email protected]>
* sysdeps/i386/fpu/libm-test-ulps: Update.
* FAQ: Removed.
* FAQ.in: Likewise.
* scripts/gen-FAQ.pl: Likewise.
* manual/install.texi (Installation): Point to online location of
FAQ.
* Makefile (files-for-dist): Remove FAQ.
(FAQ): Remove.
2012-05-02 Allan McRae <[email protected]>
* elf/Makefile: (LDFLAGS-nodel2mod3.so: Use $(no-as-needed).
(LDFLAGS-reldepmod5.so): Likewise.
(LDFLAGS-reldep6mod1.so): Likewise.
(LDFLAGS-reldep6mod4.so): Likewise.
(LDFLAGS-reldep8mod3.so): Likewise.
(LDFLAGS-unload4mod1.so): Likewise.
(LDFLAGS-unload4mod2.so): Likewise.
(LDFLAGS-tst-initorder): Likewise.
(LDFLAGS-tst-initordera2.so): Likewise.
(LDFLAGS-tst-initordera3.so): Likewise.
(LDFLAGS-tst-initordera4.so): Likewise.
(LDFLAGS-tst-initorderb2.so): Likewise.
(LDFLAGS-noload): Likewise.
(LDFLAGS-next): Likewise.
(LDFLAGS-order2mod1.so): Likewise.
(LDFLAGS-order2mod2.so): Likewise.
(LDFLAGS-tst-initorder2): Likewise.
(LDFLAGS-tst-initorder2a.so): Likewise.
(LDFLAGS-tst-initorder2b.so): Likewise.
(LDFLAGS-tst-initorder2c.so): Likewise.
* stdlib/Makefile: (LDFLAGS-tst-putenv): Likewise.
2012-05-02 David S. Miller <[email protected]>
* sysdeps/sparc/fpu/libm-test-ulps: Update.
2012-05-02 Paul Pluzhnikov <[email protected]>
[BZ #14055]
* elf/dl-sysdep.c (_dl_show_auxv): Add bounds check.
2012-05-02 Andreas Jaeger <[email protected]>
* math/Makefile (CPPFLAGS-test-ildoubl.c): Add -frounding-math
since we manipulate rounding mode.
(CPPFLAGS-test-idouble.c): Likewise.
(CPPFLAGS-test-ifloat.c): Likewise.
(CFLAGS-test-ldouble.c): Likewise.
(CFLAGS-test-double.c): Likewise.
(CFLAGS-test-float.c): Likewise.
(CFLAGS-test-misc.c): Likewise.
(CFLAGS-test-test-fenv.c): Likewise.
2012-05-02 Adhemerval Zanella <[email protected]>
[BZ #2550]
[BZ #2570]
* sysdeps/ieee754/ldbl-128ibm/s_nexttoward.c: Use floating-point
comparisons to determine direction to adjust input.
2012-05-01 Roland McGrath <[email protected]>
* elf/Makefile ($(objpfx)check-localplt.out): Redirect the test's
output to the target.
* scripts/localplt.awk: New file.
* elf/Makefile ($(objpfx)check-localplt): Target removed.
(check-localplt-CFLAGS): Variable removed.
($(all-built-dso:=.jmprel)): New static pattern rule.
(generated): Add those targets.
(localplt-built-dso): New variable.
($(objpfx)check-localplt.out): Use the script on the .jmprel files.
* elf/check-localplt.c: File removed.
* scripts/check-execstack.awk: New file.
* elf/Makefile ($(objpfx)check-execstack): Target removed.
(check-execstack-CFLAGS): Variable removed.
($(objpfx)check-execstack.h): Target removed.
($(objpfx)execstack-default): New target.
(generated): Add that instead of check-execstack.h.
($(all-built-dso:=.phdr)): New static pattern rule.
(generated): Add those targets.
* elf/check-execstack.c: File removed.
* scripts/check-textrel.awk: New file.
* elf/Makefile ($(objpfx)check-textrel): Target removed.
(check-textrel-CFLAGS): Variable removed.
(all-built-dso): Use := to define.o
($(all-built-dso:=.dyn)): New static pattern rule.
(generated): Add those targets.
($(objpfx)check-textrel.out): Use the script on the .dyn files.
* config.make.in (READELF): New substituted variable.
* elf/check-textrel.c: File removed.
2012-05-01 Joseph Myers <[email protected]>
* conform/data/assert.h-data [ISO || ISO99 || ISO11] (*_t): Do not
allow.
* conform/data/ctype.h-data [C99-based standards] (isblank):
Expect function.
(is*): Change to is[abcdefghijklmnopqrstuvwxyz]*.
(to*): Change to to[abcdefghijklmnopqrstuvwxyz]*.
[ISO || ISO99 || ISO11] (*_t): Do not allow.
* conform/data/errno.h-data (EDOM): Use macro-int-constant.
Specify type. Require positive value.
(EILSEQ): Likewise.
(ERANGE): Likewise.
[ISO || POSIX] (EILSEQ): Do not expect.
[!ISO && !ISO99 && !ISO11] (E2BIG): Use macro-int-constant.
Specify type. Require positive value.
[!ISO && !ISO99 && !ISO11] (EACCES): Likewise.
[!ISO && !ISO99 && !ISO11] (EADDRINUSE): Likewise.
[!ISO && !ISO99 && !ISO11] (EADDRNOTAVAIL): Likewise.
[!ISO && !ISO99 && !ISO11] (EAFNOSUPPORT): Likewise.
[!ISO && !ISO99 && !ISO11] (EAGAIN): Likewise.
[!ISO && !ISO99 && !ISO11] (EALREADY): Likewise.
[!ISO && !ISO99 && !ISO11] (EBADF): Likewise.
[!ISO && !ISO99 && !ISO11] (EBADMSG): Likewise.
[!ISO && !ISO99 && !ISO11] (EBUSY): Likewise.
[!ISO && !ISO99 && !ISO11] (ECANCELED): Likewise.
[!ISO && !ISO99 && !ISO11] (ECHILD): Likewise.
[!ISO && !ISO99 && !ISO11] (ECONNABORTED): Likewise.
[!ISO && !ISO99 && !ISO11] (ECONNREFUSED): Likewise.
[!ISO && !ISO99 && !ISO11] (ECONNRESET): Likewise.
[!ISO && !ISO99 && !ISO11] (EDEADLK): Likewise.
[!ISO && !ISO99 && !ISO11] (EDESTADDRREQ): Likewise.
[!ISO && !ISO99 && !ISO11] (EDQUOT): Likewise.
[!ISO && !ISO99 && !ISO11] (EEXIST): Likewise.
[!ISO && !ISO99 && !ISO11] (EFAULT): Likewise.
[!ISO && !ISO99 && !ISO11] (EFBIG): Likewise.
[!ISO && !ISO99 && !ISO11] (EHOSTUNREACH): Likewise.
[!ISO && !ISO99 && !ISO11] (EIDRM): Likewise.
[!ISO && !ISO99 && !ISO11] (EINPROGRESS): Likewise.
[!ISO && !ISO99 && !ISO11] (EINTR): Likewise.
[!ISO && !ISO99 && !ISO11] (EINVAL): Likewise.
[!ISO && !ISO99 && !ISO11] (EIO): Likewise.
[!ISO && !ISO99 && !ISO11] (EISCONN): Likewise.
[!ISO && !ISO99 && !ISO11] (EISDIR): Likewise.
[!ISO && !ISO99 && !ISO11] (ELOOP): Likewise.
[!ISO && !ISO99 && !ISO11] (EMFILE): Likewise.
[!ISO && !ISO99 && !ISO11] (EMLINK): Likewise.
[!ISO && !ISO99 && !ISO11] (EMSGSIZE): Likewise.
[!ISO && !ISO99 && !ISO11] (EMULTIHOP): Likewise.
[!ISO && !ISO99 && !ISO11] (ENAMETOOLONG): Likewise.
[!ISO && !ISO99 && !ISO11] (ENETDOWN): Likewise.
[!ISO && !ISO99 && !ISO11] (ENETUNREACH): Likewise.
[!ISO && !ISO99 && !ISO11] (ENFILE): Likewise.
[!ISO && !ISO99 && !ISO11] (ENOBUFS): Likewise.
[!ISO && !ISO99 && !ISO11] (ENODATA): Likewise.
[!ISO && !ISO99 && !ISO11] (ENODEV): Likewise.
[!ISO && !ISO99 && !ISO11] (ENOENT): Likewise.
[!ISO && !ISO99 && !ISO11] (ENOEXEC): Likewise.
[!ISO && !ISO99 && !ISO11] (ENOLCK): Likewise.
[!ISO && !ISO99 && !ISO11] (ENOLINK): Likewise.
[!ISO && !ISO99 && !ISO11] (ENOMEM): Likewise.
[!ISO && !ISO99 && !ISO11] (ENOMSG): Likewise.
[!ISO && !ISO99 && !ISO11] (ENOPROTOOPT): Likewise.
[!ISO && !ISO99 && !ISO11] (ENOSPC): Likewise.
[!ISO && !ISO99 && !ISO11] (ENOSR): Likewise.
[!ISO && !ISO99 && !ISO11] (ENOSTR): Likewise.
[!ISO && !ISO99 && !ISO11] (ENOSYS): Likewise.
[!ISO && !ISO99 && !ISO11] (ENOTCONN): Likewise.
[!ISO && !ISO99 && !ISO11] (ENOTDIR): Likewise.
[!ISO && !ISO99 && !ISO11] (ENOTEMPTY): Likewise.
[!ISO && !ISO99 && !ISO11] (ENOTSOCK): Likewise.
[!ISO && !ISO99 && !ISO11] (ENOTSUP): Likewise.
[!ISO && !ISO99 && !ISO11] (ENOTTY): Likewise.
[!ISO && !ISO99 && !ISO11] (ENXIO): Likewise.
[!ISO && !ISO99 && !ISO11] (EOPNOTSUPP): Likewise.
[!ISO && !ISO99 && !ISO11] (EOVERFLOW): Likewise.
[!ISO && !ISO99 && !ISO11] (EPERM): Likewise.
[!ISO && !ISO99 && !ISO11] (EPIPE): Likewise.
[!ISO && !ISO99 && !ISO11] (EPROTO): Likewise.
[!ISO && !ISO99 && !ISO11] (EPROTONOSUPPORT): Likewise.
[!ISO && !ISO99 && !ISO11] (EPROTOTYPE): Likewise.
[!ISO && !ISO99 && !ISO11] (EROFS): Likewise.
[!ISO && !ISO99 && !ISO11] (ESPIPE): Likewise.
[!ISO && !ISO99 && !ISO11] (ESRCH): Likewise.
[!ISO && !ISO99 && !ISO11] (ESTALE): Likewise.
[!ISO && !ISO99 && !ISO11] (ETIME): Likewise.
[!ISO && !ISO99 && !ISO11] (ETIMEDOUT): Likewise.
[!ISO && !ISO99 && !ISO11] (ETXTBSY): Likewise.
[!ISO && !ISO99 && !ISO11] (EWOULDBLOCK): Likewise.
[!ISO && !ISO99 && !ISO11] (EXDEV): Likewise.
[XOPEN2K8 || defined POSIX2008] (ENOTRECOVERABLE): Likewise.
[XOPEN2K8 || defined POSIX2008] (EOWNERDEAD): Likewise.
* conform/data/float.h-data (FLT_RADIX): Use macro-int-constant.
Require >= 2.
(FLT_ROUNDS): Expect as macro, not constant.
(FLT_MANT_DIG): Use macro-int-constant.
(DBL_MANT_DIG): Likewise.
(LDBL_MANT_DIG): Likewise.
(FLT_DIG): Likewise.
(DBL_DIG): Likewise.
(LDBL_DIG): Likewise.
(FLT_MIN_EXP): Use macro-int-constant. Require < 0.
(DBL_MIN_EXP): Likewise.
(LDBL_MIN_EXP): Likewise.
(FLT_MAX_EXP): Use macro-int-constant.
(DBL_MAX_EXP): Likewise.
(LDBL_MAX_EXP): Likewise.
(FLT_MAX_10_EXP): Likewise.
(DBL_MAX_10_EXP): Likewise.
(LDBL_MAX_10_EXP): Likewise.
(FLT_MAX): Use macro-constant.
(DBL_MAX): Likewise.
(LDBL_MAX): Likewise.
(FLT_EPSILON): Use macro-constant. Give upper bound.
(DBL_EPSILON): Likewise.
(LDBL_EPSILON): Likewise.
(FLT_MIN): Likewise.
(DBL_MIN): Likewise.
(LDBL_MIN): Likewise.
[C99-based standards] (DECIMAL_DIG): Use macro-int-constant.
[C99-based standards] (FLT_EVAL_METHOD): Likewise.
[ISO11] (DBL_HAS_SUBNORM): Use macro-int-constant.
[ISO11] (FLT_HAS_SUBNORM): Likewise.
[ISO11] (LDBL_HAS_SUBNORM): Likewise.
[ISO11] (DBL_DECIMAL_DIG): Likewise.
[ISO11] (FLT_DECIMAL_DIG): Likewise.
[ISO11] (LDBL_DECIMAL_DIG): Likewise.
[ISO11] (DBL_TRUE_MIN): Use macro-constant.
[ISO11] (FLT_TRUE_MIN): Likewise.
[ISO11] (LDBL_TRUE_MIN): Likewise.
[ISO || ISO99 || ISO11] (*_t): Do not allow.
* conform/data/limits.h-data (CHAR_BIT): Use macro-int-constant.
(SCHAR_MIN): Use macro-int-constant. Specify type.
(SCHAR_MAX): Likewise.
(UCHAR_MAX): Likewise.
(CHAR_MIN): Likewise.
(CHAR_MAX): Likewise.
(MB_LEN_MAX): Use macro-int-constant.
(SHRT_MIN): Use macro-int-constant. Specify type.
(SHRT_MAX): Likewise.
(USHRT_MAX): Likewise.
(INT_MAX): Likewise.
(INT_MIN): Use macro-int-constant. Specify type. Make upper
bound negative.
(UINT_MAX): Use macro-int-constant. Specify type. Suffix lower
bound with "U".
(LONG_MAX): Use macro-int-constant. Specify type. Suffix lower
bound with "L".
(LONG_MIN): Use macro-int-constant. Specify type. Make upper
bound negative. Suffix upper bound with "L".
(ULONG_MAX): Use macro-int-constant. Specify type. Suffix lower
bound with "UL".
[C99-based standards] (LLONG_MIN): Use macro-int-constant.
Specify type.
[C99-based standards] (LLONG_MAX): Likewise.
[C99-based standards] (ULLONG_MAX): Likewise.
* conform/data/stddef.h-data (NULL): Use macro-constant. Require
== 0.
[ISO11] (max_align_t): Require type.
[ISO || ISO99 || ISO11] (*_t): Do not allow.
* conform/conformtest.pl ($CFLAGS_namespace): Define separately
from $CFLAGS, without defining away __attribute__ calls.
(checknamespace): Use $CFLAGS_namespace.
* conform/conformtest.pl (@keywords): Only include C99 keywords
for standards based on C99 or C11.
* conform/data/iso646.h-data [ISO || POSIX || XPG3 || XPG4]:
Disable tests.
* conform/data/stdint.h-data [ISO || POSIX || XPG3 || XPG4 ||
UNIX98]: Likewise.
* conform/conformtest.pl: Handle "macro-int-constant" and test for
usability of symbols in #if.
* conform/conformtest.pl: If macro or constant types start
"promoted:", expect the symbol to be of the following type
promoted by the integer promotions.
* conform/conformtest.pl: Parse all "constant" and "macro" lines
in one place. Also handle "macro-constant".
* conform/conformtest.pl: Only accept expected macro values with
"==". Parse all "macro" lines in one place.
* conform/data/stdlib.h-data: Use "==" form on "macro" lines.
* conform/conformtest.pl: Handle braced types on "constant" lines
instead of handling "typed-constant".
* conform/data/signal.h-data: Use "constant" instead of
"typed-constant".
* conform/conformtest.pl: Handle "optional-" at start of lines in
one place rather than duplicating several cases. Handle each
format of "macro" line with initial "optional-".
* conform/conformtest.pl: Only accept expected constant or
optional-constant values with "==". Parse all "constant" lines in
one place. Parse all "optional-constant" lines in one place.
* conform/data/cpio.h-data: Use "==" form on "constant" lines.
* conform/data/fmtmsg.h-data: Likewise.
* conform/data/netinet/in.h-data: Likewise.
* conform/data/tar.h-data: Likewise.
* conform/data/limits.h-data: Use "==" form on "constant" and
"optional-constant" lines.
* conform/conformtest.pl: Use -ansi for XPG3, XPG4 and UNIX98.
Use -std=c99 for XOPEN2K.
(@knownproblems): Remove.
(newtoken): Don't check %isknown.
* conform/data/math.h-data [XPG3 || XPG4 || UNIX98] (fpclassify):
Do not expect macro.
[XPG3 || XPG4 || UNIX98] (isfinite): Likewise.
[XPG3 || XPG4 || UNIX98] (isinf): Likewise.
[XPG3 || XPG4 || UNIX98] (isnan): Likewise.
[XPG3 || XPG4 || UNIX98] (isnormal): Likewise.
[XPG3 || XPG4 || UNIX98] (signbit): Likewise.
[XPG3 || XPG4 || UNIX98] (isgreater): Likewise.
[XPG3 || XPG4 || UNIX98] (isgreaterequal): Likewise.
[XPG3 || XPG4 || UNIX98] (isless): Likewise.
[XPG3 || XPG4 || UNIX98] (islessequal): Likewise.
[XPG3 || XPG4 || UNIX98] (islessgreater): Likewise.
[XPG3 || XPG4 || UNIX98] (isunordered): Likewise.
[XPG3 || XPG4 || UNIX98] (isnan): Expect as function.
[XPG3 || XPG4 || UNIX98] (HUGE_VALF): Do not expect.
[XPG3 || XPG4 || UNIX98] (HUGE_VALL): Likewise.
[XPG3 || XPG4 || UNIX98] (INFINITY): Likewise.
[XPG3 || XPG4 || UNIX98] (NAN): Likewise.
[XPG3 || XPG4 || UNIX98] (FP_INFINITE): Likewise.
[XPG3 || XPG4 || UNIX98] (FP_NAN): Likewise.
[XPG3 || XPG4 || UNIX98] (FP_NORMAL): Likewise.
[XPG3 || XPG4 || UNIX98] (FP_SUBNORMAL): Likewise.
[XPG3 || XPG4 || UNIX98] (FP_ZERO): Likewise.
[XPG3 || XPG4 || UNIX98] (FP_FAST_FMA): Likewise.
[XPG3 || XPG4 || UNIX98] (FP_FAST_FMAF): Likewise.
[XPG3 || XPG4 || UNIX98] (FP_FAST_FMAL): Likewise.
[XPG3 || XPG4 || UNIX98] (FP_ILOGB0): Likewise.
[XPG3 || XPG4 || UNIX98] (FP_ILOGBNAN): Likewise.
[XPG3 || XPG4 || UNIX98] (copysign): Likewise.
[XPG3 || XPG4 || UNIX98] (exp2): Likewise.
[XPG3 || XPG4 || UNIX98] (log2): Likewise.
[XPG3 || XPG4 || UNIX98] (tgama): Likewise.
[XPG3] (acosh): Likewise.
[XPG3] (asinh): Likewise.
[XPG3] (atanh): Likewise.
[XPG3] (cbrt): Likewise.
[XPG3] (expm1): Likewise.
[XPG3] (ilogb): Likewise.
[XPG3] (log1p): Likewise.
[XPG3] (logb): Likewise.
[XPG3] (nextafter): Likewise.
[XPG3 || XPG4 || UNIX98] (nexttoward): Likewise.
[XPG3 || XPG4 || UNIX98] (nearbyint): Likewise.
[XPG3] (remainder): Likewise.
[XPG3] (rint): Likewise.
[XPG3 || XPG4 || UNIX98] (round): Likewise.
[XPG3 || XPG4 || UNIX98] (trunc): Likewise.
[XPG3 || XPG4 || UNIX98] (lrint): Likewise.
[XPG3 || XPG4 || UNIX98] (llrint): Likewise.
[XPG3 || XPG4 || UNIX98] (lround): Likewise.
[XPG3 || XPG4 || UNIX98] (llround): Likewise.
[XPG3 || XPG4 || UNIX98] (remquo): Likewise.
[UNIX98 || XOPEN2K] (scalb): Expect.
[XPG3 || XPG4 || UNIX98] (scalbn): Do not expect.
[XPG3 || XPG4 || UNIX98] (scalbln): Likewise.
[XPG3 || XPG4 || UNIX98] (fdim): Likewise.
[XPG3 || XPG4 || UNIX98] (fmax): Likewise.
[XPG3 || XPG4 || UNIX98] (fmin): Likewise.
[XPG3 || XPG4 || UNIX98] (fma): Likewise.
[XPG3 || XPG4 || UNIX98] (nan): Likewise.
[XPG3 || XPG4 || UNIX98] (acosf): Likewise.
[XPG3 || XPG4 || UNIX98] (asinf): Likewise.
[XPG3 || XPG4 || UNIX98] (atanf): Likewise.
[XPG3 || XPG4 || UNIX98] (atan2f): Likewise.
[XPG3 || XPG4 || UNIX98] (ceilf): Likewise.
[XPG3 || XPG4 || UNIX98] (copysignf): Likewise.
[XPG3 || XPG4 || UNIX98] (cosf): Likewise.
[XPG3 || XPG4 || UNIX98] (coshf): Likewise.
[XPG3 || XPG4 || UNIX98] (expf): Likewise.
[XPG3 || XPG4 || UNIX98] (exp2f): Likewise.
[XPG3 || XPG4 || UNIX98] (fabsf): Likewise.
[XPG3 || XPG4 || UNIX98] (floorf): Likewise.
[XPG3 || XPG4 || UNIX98] (fmodf): Likewise.
[XPG3 || XPG4 || UNIX98] (frexpf): Likewise.
[XPG3 || XPG4 || UNIX98] (ldexpf): Likewise.
[XPG3 || XPG4 || UNIX98] (logf): Likewise.
[XPG3 || XPG4 || UNIX98] (log10f): Likewise.
[XPG3 || XPG4 || UNIX98] (log2f): Likewise.
[XPG3 || XPG4 || UNIX98] (modff): Likewise.
[XPG3 || XPG4 || UNIX98] (powf): Likewise.
[XPG3 || XPG4 || UNIX98] (sinf): Likewise.
[XPG3 || XPG4 || UNIX98] (sinhf): Likewise.
[XPG3 || XPG4 || UNIX98] (sqrtf): Likewise.
[XPG3 || XPG4 || UNIX98] (tanf): Likewise.
[XPG3 || XPG4 || UNIX98] (tanhf): Likewise.
[XPG3 || XPG4 || UNIX98] (erff): Likewise.
[XPG3 || XPG4 || UNIX98] (erfcf): Likewise.
[XPG3 || XPG4 || UNIX98] (gammaf): Likewise.
[XPG3 || XPG4 || UNIX98] (hypotf): Likewise.
[XPG3 || XPG4 || UNIX98] (j0f): Likewise.
[XPG3 || XPG4 || UNIX98] (j1f): Likewise.
[XPG3 || XPG4 || UNIX98] (jnf): Likewise.
[XPG3 || XPG4 || UNIX98] (lgammaf): Likewise.
[XPG3 || XPG4 || UNIX98] (tgammaf): Likewise.
[XPG3 || XPG4 || UNIX98] (y0f): Likewise.
[XPG3 || XPG4 || UNIX98] (y1f): Likewise.
[XPG3 || XPG4 || UNIX98] (ynf): Likewise.
[XPG3 || XPG4 || UNIX98] (acoshf): Likewise.
[XPG3 || XPG4 || UNIX98] (asinhf): Likewise.
[XPG3 || XPG4 || UNIX98] (atanhf): Likewise.
[XPG3 || XPG4 || UNIX98] (cbrtf): Likewise.
[XPG3 || XPG4 || UNIX98] (expm1f): Likewise.
[XPG3 || XPG4 || UNIX98] (ilogbf): Likewise.
[XPG3 || XPG4 || UNIX98] (log1pf): Likewise.
[XPG3 || XPG4 || UNIX98] (logbf): Likewise.
[XPG3 || XPG4 || UNIX98] (nextafterf): Likewise.
[XPG3 || XPG4 || UNIX98] (nexttowardf): Likewise.
[XPG3 || XPG4 || UNIX98] (nearbyintf): Likewise.
[XPG3 || XPG4 || UNIX98] (remainderf): Likewise.
[XPG3 || XPG4 || UNIX98] (rintf): Likewise.
[XPG3 || XPG4 || UNIX98] (roundf): Likewise.
[XPG3 || XPG4 || UNIX98] (truncf): Likewise.
[XPG3 || XPG4 || UNIX98] (lrintf): Likewise.
[XPG3 || XPG4 || UNIX98] (llrintf): Likewise.
[XPG3 || XPG4 || UNIX98] (lroundf): Likewise.
[XPG3 || XPG4 || UNIX98] (llroundf): Likewise.
[XPG3 || XPG4 || UNIX98] (remquof): Likewise.
[XPG3 || XPG4 || UNIX98] (scalbf): Likewise.
[XPG3 || XPG4 || UNIX98] (scalbnf): Likewise.
[XPG3 || XPG4 || UNIX98] (scalblnf): Likewise.
[XPG3 || XPG4 || UNIX98] (fdimf): Likewise.
[XPG3 || XPG4 || UNIX98] (fmaxf): Likewise.
[XPG3 || XPG4 || UNIX98] (fminf): Likewise.
[XPG3 || XPG4 || UNIX98] (fmaf): Likewise.
[XPG3 || XPG4 || UNIX98] (nanf): Likewise.
[XPG3 || XPG4 || UNIX98] (acosl): Likewise.
[XPG3 || XPG4 || UNIX98] (asinl): Likewise.
[XPG3 || XPG4 || UNIX98] (atanl): Likewise.
[XPG3 || XPG4 || UNIX98] (atan2l): Likewise.
[XPG3 || XPG4 || UNIX98] (ceill): Likewise.
[XPG3 || XPG4 || UNIX98] (copysignl): Likewise.
[XPG3 || XPG4 || UNIX98] (cosl): Likewise.
[XPG3 || XPG4 || UNIX98] (coshl): Likewise.
[XPG3 || XPG4 || UNIX98] (expl): Likewise.
[XPG3 || XPG4 || UNIX98] (exp2l): Likewise.
[XPG3 || XPG4 || UNIX98] (fabsl): Likewise.
[XPG3 || XPG4 || UNIX98] (floorl): Likewise.
[XPG3 || XPG4 || UNIX98] (fmodl): Likewise.
[XPG3 || XPG4 || UNIX98] (frexpl): Likewise.
[XPG3 || XPG4 || UNIX98] (ldexpl): Likewise.
[XPG3 || XPG4 || UNIX98] (logl): Likewise.
[XPG3 || XPG4 || UNIX98] (log10l): Likewise.
[XPG3 || XPG4 || UNIX98] (log2l): Likewise.
[XPG3 || XPG4 || UNIX98] (modfl): Likewise.
[XPG3 || XPG4 || UNIX98] (powl): Likewise.
[XPG3 || XPG4 || UNIX98] (sinl): Likewise.
[XPG3 || XPG4 || UNIX98] (sinhl): Likewise.
[XPG3 || XPG4 || UNIX98] (sqrtl): Likewise.
[XPG3 || XPG4 || UNIX98] (tanl): Likewise.
[XPG3 || XPG4 || UNIX98] (tanhl): Likewise.
[XPG3 || XPG4 || UNIX98] (erfl): Likewise.
[XPG3 || XPG4 || UNIX98] (erfcl): Likewise.
[XPG3 || XPG4 || UNIX98] (gammal): Likewise.
[XPG3 || XPG4 || UNIX98] (hypotl): Likewise.
[XPG3 || XPG4 || UNIX98] (j0l): Likewise.
[XPG3 || XPG4 || UNIX98] (j1l): Likewise.
[XPG3 || XPG4 || UNIX98] (jnl): Likewise.
[XPG3 || XPG4 || UNIX98] (lgammal): Likewise.
[XPG3 || XPG4 || UNIX98] (tgammal): Likewise.
[XPG3 || XPG4 || UNIX98] (y0l): Likewise.
[XPG3 || XPG4 || UNIX98] (y1l): Likewise.
[XPG3 || XPG4 || UNIX98] (ynl): Likewise.
[XPG3 || XPG4 || UNIX98] (acoshl): Likewise.
[XPG3 || XPG4 || UNIX98] (asinhl): Likewise.
[XPG3 || XPG4 || UNIX98] (atanhl): Likewise.
[XPG3 || XPG4 || UNIX98] (cbrtl): Likewise.
[XPG3 || XPG4 || UNIX98] (expm1l): Likewise.
[XPG3 || XPG4 || UNIX98] (ilogbl): Likewise.
[XPG3 || XPG4 || UNIX98] (log1pl): Likewise.