mirror of
https://github.com/postgres/postgres.git
synced 2025-06-16 06:01:02 +03:00
sigjmp_buf/jmp_buf is backwards, so backend doesn't compile.
This commit is contained in:
@ -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;
|
|||||||
/*
|
/*
|
||||||
* 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;
|
||||||
|
Reference in New Issue
Block a user