diff options
Diffstat (limited to 'src/include/utils/exc.h')
-rw-r--r-- | src/include/utils/exc.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/include/utils/exc.h b/src/include/utils/exc.h index dd53d9f9112..7400f9ce038 100644 --- a/src/include/utils/exc.h +++ b/src/include/utils/exc.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: exc.h,v 1.11 1998/01/24 22:50:41 momjian Exp $ + * $Id: exc.h,v 1.12 1998/02/26 04:43:59 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -78,7 +78,8 @@ typedef void ExcProc (Exception *, ExcDetail, ExcData, ExcMessage); * prototypes for functions in exc.c */ extern void EnableExceptionHandling(bool on); -extern void ExcRaise(Exception *excP, +extern void +ExcRaise(Exception *excP, ExcDetail detail, ExcData data, ExcMessage message); @@ -87,7 +88,8 @@ extern void ExcRaise(Exception *excP, /* * prototypes for functions in excabort.c */ -extern void ExcAbort(const Exception *excP, ExcDetail detail, ExcData data, +extern void +ExcAbort(const Exception *excP, ExcDetail detail, ExcData data, ExcMessage message); #endif /* EXC_H */ |