1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-28 23:42:10 +03:00

Remove inclusion of <varargs.h> on SunOS; this does not work since we

use the ANSI varargs style (<stdarg.h>) not the old style.  Tatsuo had
reported this change was necessary back in the 7.0 beta cycle (4/13/00)
but for some reason, making the edit never got done.
This commit is contained in:
Tom Lane
2001-02-20 00:28:07 +00:00
parent 2884073848
commit a24b04de88

View File

@ -12,7 +12,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 1994, Regents of the University of California
* *
* $Id: c.h,v 1.90 2001/02/10 02:31:28 tgl Exp $ * $Id: c.h,v 1.91 2001/02/20 00:28:07 tgl Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
@ -584,7 +584,6 @@ typedef NameData *Name;
#if defined(sun) && defined(__sparc__) && !defined(__SVR4) #if defined(sun) && defined(__sparc__) && !defined(__SVR4)
#include <unistd.h> #include <unistd.h>
#include <varargs.h>
#endif #endif
/* These are for things that are one way on Unix and another on NT */ /* These are for things that are one way on Unix and another on NT */