aboutsummaryrefslogtreecommitdiff
path: root/libiberty
diff options
context:
space:
mode:
authorGerald Pfeifer <gerald@pfeifer.com>2023-03-30 23:41:24 +0200
committerGerald Pfeifer <gerald@pfeifer.com>2023-03-30 23:41:24 +0200
commit83d2b1ccd17d394d546a38562815ef83daa05e85 (patch)
tree3806ca57804801b7fffc468d4995a02cdd940bb5 /libiberty
parentc016887c91a79d67b6a3c7e19b9219f5ab1e2a4d (diff)
downloadgcc-83d2b1ccd17d394d546a38562815ef83daa05e85.zip
gcc-83d2b1ccd17d394d546a38562815ef83daa05e85.tar.gz
gcc-83d2b1ccd17d394d546a38562815ef83daa05e85.tar.bz2
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.
Diffstat (limited to 'libiberty')
-rw-r--r--libiberty/obstacks.texi4
1 files changed, 2 insertions, 2 deletions
diff --git a/libiberty/obstacks.texi b/libiberty/obstacks.texi
index b2d2403..37d26c9 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)