(ansi_compat.h): Replace this with an empty file.

From-SVN: r1883
This commit is contained in:
Richard Stallman 1992-08-18 04:19:17 +00:00
parent 31bcbccb46
commit e63c1d357b

View File

@ -737,6 +737,14 @@ if [ -r ${LIB}/$file ]; then
fi
fi
# Cancel out ansi_compat.h on Ultrix. Replace it with empty file.
file=ansi_compat.h
if [ -r $file ] && [ ! -r ${LIB}/$file ]; then
if grep -s ULTRIX $file; then
echo "/* This file intentionally left blank. */" > $LIB/$file
fi
fi
# parameter to atof not const on DECstation Ultrix V4.0.
file=math.h
if [ -r $file ] && [ ! -r ${LIB}/$file ]; then