From 4bee3c127f51c0a4a922d22dbdf252e7692ab247 Mon Sep 17 00:00:00 2001 From: roland Date: Fri, 10 Feb 1995 00:10:06 +0000 Subject: [PATCH 1/1] Remove `const' from function prototype. --- setjmp/longjmp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setjmp/longjmp.c b/setjmp/longjmp.c index 3998f5bf76..d4e4ef7740 100644 --- a/setjmp/longjmp.c +++ b/setjmp/longjmp.c @@ -25,7 +25,7 @@ Cambridge, MA 02139, USA. */ to the position specified in ENV, causing the setjmp call there to return VAL, or 1 if VAL is 0. */ void -longjmp (const sigjmp_buf env, int val) +longjmp (sigjmp_buf env, int val) { if (env[0].__mask_was_saved) /* Restore the saved signal mask. */ -- 2.11.0