diff options
author | Gaius Mulley <gaiusmod2@gmail.com> | 2022-11-07 19:08:06 +0000 |
---|---|---|
committer | Gaius Mulley <gaiusmod2@gmail.com> | 2022-11-07 19:08:06 +0000 |
commit | 63edc9963c41be8026fd3a2eebd36ce3417af1b1 (patch) | |
tree | ce8531522a9481768985905a4a4c58a2094b0eb2 | |
parent | be86a95e809b1e95a3e534a9dfa9456107daa325 (diff) | |
download | gcc-63edc9963c41be8026fd3a2eebd36ce3417af1b1.zip gcc-63edc9963c41be8026fd3a2eebd36ce3417af1b1.tar.gz gcc-63edc9963c41be8026fd3a2eebd36ce3417af1b1.tar.bz2 |
Remove xenix support from bootstrap tool mklink.c.
Remove conditional filename truncation necessary under XENIX.
gcc/m2/ChangeLog:
* tools-src/mklink.c
Signed-off-by: Gaius Mulley <gaiusmod2@gmail.com>
-rw-r--r-- | gcc/m2/tools-src/mklink.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/gcc/m2/tools-src/mklink.c b/gcc/m2/tools-src/mklink.c index 9d3c7fc..fb95fd4 100644 --- a/gcc/m2/tools-src/mklink.c +++ b/gcc/m2/tools-src/mklink.c @@ -264,9 +264,6 @@ ParseFileLinkCommand (void) while (PutChar (GetChar ()) != (char)EOF) { CopyUntilEolInto (name); -#if defined(XENIX) - name[10] = (char)0; /* truncate object file name. */ -#endif if ((strlen (name) > 0) && (name[0] != '#')) FindObject (name); } |