diff options
Diffstat (limited to 'src/include/utils/elog.h')
-rw-r--r-- | src/include/utils/elog.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/utils/elog.h b/src/include/utils/elog.h index 6a4809a3397..0ad41c65b3a 100644 --- a/src/include/utils/elog.h +++ b/src/include/utils/elog.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/utils/elog.h,v 1.86 2007/05/04 02:01:02 tgl Exp $ + * $PostgreSQL: pgsql/src/include/utils/elog.h,v 1.87 2007/07/25 12:22:54 mha Exp $ * *------------------------------------------------------------------------- */ @@ -173,7 +173,7 @@ typedef struct ErrorContextCallback void *arg; } ErrorContextCallback; -extern DLLIMPORT ErrorContextCallback *error_context_stack; +extern PGDLLIMPORT ErrorContextCallback *error_context_stack; /*---------- @@ -234,7 +234,7 @@ extern DLLIMPORT ErrorContextCallback *error_context_stack; (pg_re_throw(), exit(1)) #endif -extern DLLIMPORT sigjmp_buf *PG_exception_stack; +extern PGDLLIMPORT sigjmp_buf *PG_exception_stack; /* Stuff that error handlers might want to use */ |