1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-05 07:21:24 +03:00

Cygwin uses _sys_nerr for sys_nerr

This commit is contained in:
Peter Eisentraut
2000-09-29 13:35:26 +00:00
parent 5f18e2183e
commit 52dda5ec05
2 changed files with 15 additions and 7 deletions

View File

@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/error/elog.c,v 1.61 2000/06/28 03:32:27 tgl Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/error/elog.c,v 1.62 2000/09/29 13:35:26 petere Exp $
*
*-------------------------------------------------------------------------
*/
@ -38,6 +38,10 @@
#include "commands/copy.h"
extern int errno;
#ifdef __CYGWIN__
# define sys_nerr _sys_nerr
#endif
extern int sys_nerr;
extern CommandDest whereToSendOutput;