fix the type of CLOCKS_PER_SEC to match new clock_t type
[musl] / src / math / i386 / remainderf.s
1 .global remainderf
2 .type remainderf,@function
3 remainderf:
4         flds 8(%esp)
5         flds 4(%esp)
6 1:      fprem1
7         fstsw %ax
8         sahf
9         jp 1b
10         fstp %st(1)
11         ret