diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 1999-02-11 01:36:55 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 1999-02-11 01:36:55 +0000 |
commit | 403b3eff795ce1f19412726cdd56e0909a66d749 (patch) | |
tree | 109417742776080d7a77881bdce88aa37f5d6bb6 | |
parent | 9dbb0efb0be24c43012546cf5756866fc606af4b (diff) | |
download | postgresql-403b3eff795ce1f19412726cdd56e0909a66d749.tar.gz postgresql-403b3eff795ce1f19412726cdd56e0909a66d749.zip |
Include <varargs.h> on SunOS. (Does any other platform need it??)
-rw-r--r-- | src/include/c.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/c.h b/src/include/c.h index 7c95bbd433c..fbf4a613e0c 100644 --- a/src/include/c.h +++ b/src/include/c.h @@ -7,7 +7,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: c.h,v 1.49 1999/01/17 06:19:22 momjian Exp $ + * $Id: c.h,v 1.50 1999/02/11 01:36:55 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -821,6 +821,7 @@ extern char *form(const char *fmt,...); #if defined(sun) && defined(sparc) && !defined(__SVR4) #define memmove(d, s, l) bcopy(s, d, l) #include <unistd.h> +#include <varargs.h> #endif /* These are for things that are one way on Unix and another on NT */ |