|
6 | 6 | * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group |
7 | 7 | * Portions Copyright (c) 1994, Regents of the University of California |
8 | 8 | * |
9 | | - * $PostgreSQL: pgsql/src/include/port.h,v 1.43 2004/06/11 16:10:09 momjian Exp $ |
| 9 | + * $PostgreSQL: pgsql/src/include/port.h,v 1.44 2004/07/21 03:07:40 momjian Exp $ |
10 | 10 | * |
11 | 11 | *------------------------------------------------------------------------- |
12 | 12 | */ |
@@ -151,7 +151,7 @@ extern intpgunlink(const char *path); |
151 | 151 | #ifdefWIN32 |
152 | 152 |
|
153 | 153 | /* open() replacement to allow delete of held files */ |
154 | | -#ifndef_MSC_VER |
| 154 | +#if !defined(_MSC_VER)&& !defined(__BORLANDC__) |
155 | 155 | externintwin32_open(constchar*,int,...); |
156 | 156 | #defineopen(a,b,...)win32_open(a,b,##__VA_ARGS__) |
157 | 157 | #endif |
|