From 2697c27923ec2dfe1c3d1e5637aa009ab09743c2 Mon Sep 17 00:00:00 2001 From: Bryan Henderson <bryanh@giraffe.netgate.net> Date: Tue, 10 Dec 1996 07:04:22 +0000 Subject: [PATCH] sigjmp_buf/jmp_buf is backwards, so backend doesn't compile. --- src/include/utils/exc.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/include/utils/exc.h b/src/include/utils/exc.h index 69fa3591097..e3cc43b34c0 100644 --- a/src/include/utils/exc.h +++ b/src/include/utils/exc.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: exc.h,v 1.5 1996/11/27 08:16:44 bryanh Exp $ + * $Id: exc.h,v 1.6 1996/12/10 07:04:22 bryanh Exp $ * *------------------------------------------------------------------------- */ @@ -23,7 +23,7 @@ extern Index ExcLineNumber; /* * ExcMessage and Exception are now defined in c.h */ -#if !defined(SIGJMP_BUF) +#if defined(JMP_BUF) typedef jmp_buf ExcContext; #else typedef sigjmp_buf ExcContext; -- GitLab