aboutsummaryrefslogtreecommitdiff
path: root/gcc/fixproto
diff options
context:
space:
mode:
authorRichard Stallman <rms@gnu.org>1993-10-22 21:50:08 +0000
committerRichard Stallman <rms@gnu.org>1993-10-22 21:50:08 +0000
commitaab7bd19635a0029e169234abd00a50f99b987da (patch)
tree9a3cb94b8a092adfee47f143a504ae57f6838f84 /gcc/fixproto
parente7f9bcdc2f180eb28b8dec373ccd530ac3bc4343 (diff)
downloadgcc-aab7bd19635a0029e169234abd00a50f99b987da.zip
gcc-aab7bd19635a0029e169234abd00a50f99b987da.tar.gz
gcc-aab7bd19635a0029e169234abd00a50f99b987da.tar.bz2
Use fix-header.
From-SVN: r5870
Diffstat (limited to 'gcc/fixproto')
-rwxr-xr-xgcc/fixproto8
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/fixproto b/gcc/fixproto
index 45830ce..fe516f7 100755
--- a/gcc/fixproto
+++ b/gcc/fixproto
@@ -34,11 +34,11 @@
# STRATEGY
# Each include file is fed through cpp, and the scan-decls program
# parses it, and emits any found function declarations.
-# The patch-header program analyzes the scan-decls output,
+# The fix-header program analyzes the scan-decls output,
# together with the original include file, and writes a "fixed"
# include file, if needed.
#
-# The comment at the beginning of patch-header.c lists specifically
+# The comment at the beginning of fix-header.c lists specifically
# what kind of changes are made.
#
# NOTE
@@ -297,7 +297,7 @@ for code in ALL STD ; do
done
if ${CPP} -D__STDC__ -D__cplusplus -D_POSIX_SOURCE $include_path fixtmp.c >fixtmp.i 2>/dev/null
then
- $original_dir/patch-header $rel_source_file $abs_source_file $abs_target_file "$required_list" <fixtmp.i
+ $original_dir/fix-header $rel_source_file $abs_source_file $abs_target_file "$required_list" <fixtmp.i
else
echo "${progname}: cpp could not parse ${abs_source_file} (ignored)"
fi
@@ -336,7 +336,7 @@ do
#define ${rel_source_ident}
#endif
EOF
- $original_dir/patch-header $rel_source_file tmp.h $abs_target_dir/$rel_source_file "$required_list" </dev/null
+ $original_dir/fix-header $rel_source_file tmp.h $abs_target_dir/$rel_source_file "$required_list" </dev/null
rm tmp.h
fi
done