From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2142) id B37743858404; Thu, 30 Mar 2023 21:48:33 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org B37743858404 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1680212913; bh=5MvpSQvZq9dwMHSNdos5KP+Yo+8AMno5e+YIv1Z2V4E=; h=From:To:Subject:Date:From; b=iz61L5kr9w1ft70PA90ol4fFHoQ7+aZymYXLt7jWwp30UTNWOaVLyQuM4rdI2zoG1 kikR+s07Z/y68ZV1FQERQj92sS6Ws14jyBbhHSWJ9jb1Lra8OGYRW7UPV4iTzNQjr/ fApODge35Jc7RB+GQ584jIki1naO3CEhSjhGpCSk= MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: Gerald Pfeifer To: gcc-cvs@gcc.gnu.org Subject: [gcc r13-6947] libiberty: Remove a reference to the Glibc manual X-Act-Checkin: gcc X-Git-Author: Gerald Pfeifer X-Git-Refname: refs/heads/trunk X-Git-Oldrev: c016887c91a79d67b6a3c7e19b9219f5ab1e2a4d X-Git-Newrev: 83d2b1ccd17d394d546a38562815ef83daa05e85 Message-Id: <20230330214833.B37743858404@sourceware.org> Date: Thu, 30 Mar 2023 21:48:33 +0000 (GMT) List-Id: https://gcc.gnu.org/g:83d2b1ccd17d394d546a38562815ef83daa05e85 commit r13-6947-g83d2b1ccd17d394d546a38562815ef83daa05e85 Author: Gerald Pfeifer Date: Thu Mar 30 23:41:24 2023 +0200 libiberty: Remove a reference to the Glibc manual longjmp is not specific to Glibc, and GCC supports lots of systems that do not use Glibc. Plus this link has been broken in the web version for ages without a good way to fix. libiberty/ChangeLog: * obstacks.texi (Preparing for Obstacks): Remove a (broken) reference to the Glibc manual. Diff: --- libiberty/obstacks.texi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libiberty/obstacks.texi b/libiberty/obstacks.texi index b2d2403210b..37d26c90f1b 100644 --- a/libiberty/obstacks.texi +++ b/libiberty/obstacks.texi @@ -172,8 +172,8 @@ The value of this variable is a pointer to a function that @code{obstack} uses when @code{obstack_chunk_alloc} fails to allocate memory. The default action is to print a message and abort. You should supply a function that either calls @code{exit} -(@pxref{Program Termination, , , libc, The GNU C Library Reference Manual}) or @code{longjmp} (@pxref{Non-Local -Exits, , , libc, The GNU C Library Reference Manual}) and doesn't return. +(@pxref{Program Termination, , , libc, The GNU C Library Reference Manual}) +or @code{longjmp} and doesn't return. @smallexample void my_obstack_alloc_failed (void)