* fixincludes: Also fix AIX NULL macro in sys/{dir,param,types}.h.

From-SVN: r14243
This commit is contained in:
Brendan Kehoe 1997-06-13 19:35:55 -04:00
parent 652390521f
commit 171e10fe63

View File

@ -2862,7 +2862,7 @@ done
# AIX headers define NULL to be cast to a void pointer, which is illegal
# in ANSI C++.
for file in curses.h dbm.h locale.h stdio.h stdlib.h string.h time.h unistd.h ; do
for file in curses.h dbm.h locale.h stdio.h stdlib.h string.h time.h unistd.h sys/dir.h sys/param.h sys/types.h ; do
if [ -r $file ] && [ ! -r ${LIB}/$file ]; then
cp $file ${LIB}/$file >/dev/null 2>&1 || echo "Can't copy $file"
chmod +w ${LIB}/$file 2>/dev/null