diff options
author | Tatsuo Ishii <ishii@postgresql.org> | 2000-10-27 02:23:51 +0000 |
---|---|---|
committer | Tatsuo Ishii <ishii@postgresql.org> | 2000-10-27 02:23:51 +0000 |
commit | 2969c01d55f96d84c3e493fa69845affe6f12fdc (patch) | |
tree | a78c915f3ba803187be97fd3d878287ccf5af4d1 /src/include | |
parent | 063c0f6beac6107d5b2b5ba101236c71a98070f7 (diff) |
Remove gcc-only macro definition
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/mb/pg_wchar.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/mb/pg_wchar.h b/src/include/mb/pg_wchar.h index 342ea8757e3..136ead966c9 100644 --- a/src/include/mb/pg_wchar.h +++ b/src/include/mb/pg_wchar.h @@ -1,4 +1,4 @@ -/* $Id: pg_wchar.h,v 1.20 2000/10/25 19:44:43 tgl Exp $ */ +/* $Id: pg_wchar.h,v 1.21 2000/10/27 02:21:15 ishii Exp $ */ #ifndef PG_WCHAR_H #define PG_WCHAR_H @@ -7,9 +7,9 @@ #include <sys/types.h> #ifdef FRONTEND -#define elog(X...) #undef palloc #define palloc malloc +# undef pfree #define pfree free #endif |