aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2001-02-20 00:28:07 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2001-02-20 00:28:07 +0000
commita24b04de88b8f1e6a6b003a66b4f69ecd6793d29 (patch)
tree6bb52a012343a586c17cf09af8951ec226d8787f /src
parent288407384847c74c5f969d6e9a462010fd8a1f2d (diff)
downloadpostgresql-a24b04de88b8f1e6a6b003a66b4f69ecd6793d29.tar.gz
postgresql-a24b04de88b8f1e6a6b003a66b4f69ecd6793d29.zip
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.
Diffstat (limited to 'src')
-rw-r--r--src/include/c.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/include/c.h b/src/include/c.h
index 78001289c4d..5756aefedc3 100644
--- a/src/include/c.h
+++ b/src/include/c.h
@@ -12,7 +12,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* 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)
#include <unistd.h>
-#include <varargs.h>
#endif
/* These are for things that are one way on Unix and another on NT */