aboutsummaryrefslogtreecommitdiff
path: root/src/include/utils/exc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/utils/exc.h')
-rw-r--r--src/include/utils/exc.h15
1 files changed, 3 insertions, 12 deletions
diff --git a/src/include/utils/exc.h b/src/include/utils/exc.h
index 566e3bdc5ab..8b2fc4723a9 100644
--- a/src/include/utils/exc.h
+++ b/src/include/utils/exc.h
@@ -7,31 +7,22 @@
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: exc.h,v 1.16 2000/01/26 05:58:38 momjian Exp $
+ * $Id: exc.h,v 1.17 2000/10/28 23:53:01 petere Exp $
*
*-------------------------------------------------------------------------
*/
#ifndef EXC_H
#define EXC_H
-#include <setjmp.h>
-
#include "config.h"
+#include <setjmp.h>
+
extern char *ExcFileName;
extern Index ExcLineNumber;
-/*
- * ExcMessage and Exception are now defined in c.h
- */
-#if defined(JMP_BUF)
-typedef jmp_buf ExcContext;
-
-#else
typedef sigjmp_buf ExcContext;
-#endif
-
typedef Exception *ExcId;
typedef long ExcDetail;
typedef char *ExcData;