]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
* fixincludes: Also fix AIX NULL macro in sys/{dir,param,types}.h.
authorBrendan Kehoe <brendan@gcc.gnu.org>
Fri, 13 Jun 1997 23:35:55 +0000 (19:35 -0400)
committerBrendan Kehoe <brendan@gcc.gnu.org>
Fri, 13 Jun 1997 23:35:55 +0000 (19:35 -0400)
From-SVN: r14243

gcc/fixincludes

index f7adfa1a0e54e437563e74b884c1781063951e44..6f7ab387c64ae283064422f6621b7ddece4f4146 100755 (executable)
@@ -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