diff options
| author | Marc G. Fournier <scrappy@hub.org> | 1996-07-22 21:58:28 +0000 |
|---|---|---|
| committer | Marc G. Fournier <scrappy@hub.org> | 1996-07-22 21:58:28 +0000 |
| commit | 18a7989e1a9f207c9510a602089dc3e87e796b33 (patch) | |
| tree | 9ce798ee83bc3dd47e58d8d1ba671c5dbbaf5b09 /src/backend/utils/exc.h | |
| parent | 672f6ece2317b4a56fc1c776a1df439036c677bf (diff) | |
| download | postgresql-18a7989e1a9f207c9510a602089dc3e87e796b33.tar.gz | |
- merging in Dr. George's tree with ours
- src/backend/access
- no changes
- src/backend/utils
- mostly cosmetic changes
- ESCAPE_PATCH Added
- src/Makefile.global changes merged
Diffstat (limited to 'src/backend/utils/exc.h')
| -rw-r--r-- | src/backend/utils/exc.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/backend/utils/exc.h b/src/backend/utils/exc.h index 487ecca837..44300f558b 100644 --- a/src/backend/utils/exc.h +++ b/src/backend/utils/exc.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: exc.h,v 1.1.1.1 1996/07/09 06:22:01 scrappy Exp $ + * $Id: exc.h,v 1.2 1996/07/22 21:55:41 scrappy Exp $ * *------------------------------------------------------------------------- */ @@ -23,10 +23,10 @@ extern Index ExcLineNumber; * ExcMessage and Exception are now defined in c.h */ -#if defined(PORTNAME_linux) \ -|| defined(PORTNAME_hpux) \ -|| defined(PORTNAME_next)\ -|| defined(WIN32) +#if defined(PORTNAME_hpux) || \ + defined(PORTNAME_linux) || \ + defined(PORTNAME_next) || \ + defined(WIN32) typedef jmp_buf ExcContext; #else typedef sigjmp_buf ExcContext; |
