diff options
author | Marc G. Fournier <scrappy@hub.org> | 1999-08-02 05:25:27 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1999-08-02 05:25:27 +0000 |
commit | 9a8aeb23a19ee6833480d4c12719d9fd26ad8571 (patch) | |
tree | c97d5f26e89cc9d33c5be420a5e7688835644c77 /src/backend/utils/error/exc.c | |
parent | 62d146bdcd784280b573acd8af52488e66e212cf (diff) |
Another 'mega-commit' of back-patches ...
- integrating the #include file cleanup that Bruce recently did
- got the CPU change to adt/Makefile
- changing DOUBLEALIGN -> MAXALIGN
Diffstat (limited to 'src/backend/utils/error/exc.c')
-rw-r--r-- | src/backend/utils/error/exc.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/backend/utils/error/exc.c b/src/backend/utils/error/exc.c index 7384847d18e..357dae1baf3 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.25 1999/05/25 16:12:26 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/utils/error/Attic/exc.c,v 1.25.2.1 1999/08/02 05:25:04 scrappy Exp $ * * NOTE * XXX this code needs improvement--check for state violations and @@ -15,14 +15,12 @@ * *------------------------------------------------------------------------- */ -#include <stdio.h> /* XXX use own I/O routines */ #include <errno.h> -#include <string.h> #include "postgres.h" -#include "utils/exc.h" #include "storage/ipc.h" +#include "utils/exc.h" static void ExcUnCaught(Exception *excP, ExcDetail detail, ExcData data, ExcMessage message); |