]> granicus.if.org Git - postgresql/commitdiff
sigjmp_buf/jmp_buf is backwards, so backend doesn't compile.
authorBryan Henderson <bryanh@giraffe.netgate.net>
Tue, 10 Dec 1996 07:04:22 +0000 (07:04 +0000)
committerBryan Henderson <bryanh@giraffe.netgate.net>
Tue, 10 Dec 1996 07:04:22 +0000 (07:04 +0000)
src/include/utils/exc.h

index 69fa3591097d5078de96842626ded972f5918b1b..e3cc43b34c0633ae77a2c47cba99b3b17c7cc118 100644 (file)
@@ -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;