1.global remainderf
2.type remainderf,@function
3remainderf:
4.weak dremf
5.type dremf,@function
6dremf:
7	flds 8(%esp)
8	flds 4(%esp)
91:	fprem1
10	fnstsw %ax
11	sahf
12	jp 1b
13	fstp %st(1)
14	ret
15