From 9e5a8d476079690e0c7623e794b6f6d99de02429 Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Sat, 1 Apr 1995 09:45:31 -0500 Subject: [PATCH] Remove unneeded fixes relating to __stdcall. From-SVN: r9287 --- gcc/fixinc.winnt | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/gcc/fixinc.winnt b/gcc/fixinc.winnt index c928675739f..633d3eb7bb9 100644 --- a/gcc/fixinc.winnt +++ b/gcc/fixinc.winnt @@ -106,7 +106,7 @@ while [ $# != 0 ]; do echo 'Checking header files:' for file in $files; do echo $file - if egrep "!__STDC__|__stdcall|__cdecl" $file >NUL; then + if egrep "!__STDC__" $file >NUL; then if [ -r $file ]; then cp $file $2/$file >NUL 2>&1 || echo "Can't copy $file" chmod +w,a+r $2/$file @@ -119,8 +119,6 @@ while [ $# != 0 ]; do sed -e ' s/!__STDC__/!defined (__STRICT_ANSI__)/g - s/__stdcall/__attribute__((stdcall))/g - s/__cdecl/__attribute__((cdecl))/g ' $2/$file > $2/$file.sed mv $2/$file.sed $2/$file if cmp $file $2/$file >NUL 2>&1; then -- 2.30.2