Commit 2697c279 authored by Bryan Henderson's avatar Bryan Henderson

sigjmp_buf/jmp_buf is backwards, so backend doesn't compile.

parent 7492fb16
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
* *
* Copyright (c) 1994, Regents of the University of California * 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; ...@@ -23,7 +23,7 @@ extern Index ExcLineNumber;
/* /*
* ExcMessage and Exception are now defined in c.h * ExcMessage and Exception are now defined in c.h
*/ */
#if !defined(SIGJMP_BUF) #if defined(JMP_BUF)
typedef jmp_buf ExcContext; typedef jmp_buf ExcContext;
#else #else
typedef sigjmp_buf ExcContext; typedef sigjmp_buf ExcContext;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment