blob: ce40f21dc8eb099dffcb9353f8d8b2d85d309d65 [file] [log] [blame]
#! /bin/sh
# Solaris libc prints 'Inf' or 'Infinity' instead of 'inf'
# and 'NaN' instead of 'nan'. Filter these differences here.
sed "s/-Infinity/ -inf/g" |
sed "s/Infinity/ inf/g" |
sed "s/Inf/inf/g" |
sed "s/NaN/nan/g"
exit 0