diff options
author | Bruce Momjian <bruce@momjian.us> | 2007-01-11 02:40:12 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2007-01-11 02:40:12 +0000 |
commit | 6a59778360f372ee8246f5b3cf88ff925e67db1f (patch) | |
tree | b80b39385eb6d0e5cb74926ef5446d722185c866 /src/include/c.h | |
parent | 9c505e484cbb06bb7d688c86e3d0c54d49414f27 (diff) |
Allow Borland CC to compile libpq and psql.
Backpatch to 8.2.X.
L Bayuk
Diffstat (limited to 'src/include/c.h')
-rw-r--r-- | src/include/c.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/c.h b/src/include/c.h index a7281dab829..61400a7f682 100644 --- a/src/include/c.h +++ b/src/include/c.h @@ -12,7 +12,7 @@ * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/c.h,v 1.214 2006/10/04 00:30:06 momjian Exp $ + * $PostgreSQL: pgsql/src/include/c.h,v 1.214.2.1 2007/01/11 02:40:12 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -59,7 +59,7 @@ #include "postgres_ext.h" #include "pg_trace.h" -#if defined(__BORLANDC__) || (_MSC_VER >= 1400) +#if _MSC_VER >= 1400 #define errcode __msvc_errcode #include <crtdefs.h> #undef errcode |