Home | History | Annotate | Line # | Download | only in libm
convertFreeBSD revision 1.1
      1  1.1  christos #!/bin/sh
      2  1.1  christos # simple script to do some of the mechanical conversion from the FreeBSD
      3  1.1  christos # sources
      4  1.1  christos sed -i \
      5  1.1  christos     -e 's/IEEEl2bits/ieee_ext_u/g' \
      6  1.1  christos     -e 's/bits.man/extu_frac/g' \
      7  1.1  christos     -e 's/\.\<e\>/\.extu_ld/g' \
      8  1.1  christos     -e 's/LDBL_MANH_SIZE/EXT_FRACHBITS/g' \
      9  1.1  christos     -e 's/LDBL_MANL_SIZE/EXT_FRACLBITS/g' \
     10  1.1  christos     -e 's/u.xbits.expsign/GET_EXPSIGN(\&u)/g' \
     11  1.1  christos     -e 's/bits.exp/extu_exp/g' \
     12  1.1  christos     -e 's/bits.sign/extu_sign/g' \
     13  1.1  christos     "$@"
     14  1.1  christos 
     15