diff options
Diffstat (limited to 'src/backend/utils/error/exc.c')
-rw-r--r-- | src/backend/utils/error/exc.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/backend/utils/error/exc.c b/src/backend/utils/error/exc.c index cfa0176440d..8a899354308 100644 --- a/src/backend/utils/error/exc.c +++ b/src/backend/utils/error/exc.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/utils/error/Attic/exc.c,v 1.17 1997/09/08 02:31:29 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/utils/error/Attic/exc.c,v 1.18 1997/09/08 21:49:00 momjian Exp $ * * NOTE * XXX this code needs improvement--check for state violations and @@ -25,10 +25,10 @@ #include "storage/ipc.h" static void -ExcUnCaught(Exception * excP, ExcDetail detail, ExcData data, +ExcUnCaught(Exception *excP, ExcDetail detail, ExcData data, ExcMessage message); static void -ExcPrint(Exception * excP, ExcDetail detail, ExcData data, +ExcPrint(Exception *excP, ExcDetail detail, ExcData data, ExcMessage message); /* @@ -98,7 +98,7 @@ EnableExceptionHandling(bool on) } static void -ExcPrint(Exception * excP, +ExcPrint(Exception *excP, ExcDetail detail, ExcData data, ExcMessage message) @@ -151,7 +151,7 @@ ExcGetUnCaught(void) #ifdef NOT_USED ExcProc * -ExcSetUnCaught(ExcProc * newP) +ExcSetUnCaught(ExcProc *newP) { ExcProc *oldP = ExcUnCaughtP; @@ -163,7 +163,7 @@ ExcSetUnCaught(ExcProc * newP) #endif static void -ExcUnCaught(Exception * excP, +ExcUnCaught(Exception *excP, ExcDetail detail, ExcData data, ExcMessage message) @@ -174,7 +174,7 @@ ExcUnCaught(Exception * excP, } void -ExcRaise(Exception * excP, +ExcRaise(Exception *excP, ExcDetail detail, ExcData data, ExcMessage message) |