From 7ac913362770b9f15093bd43769068d966bf913f Mon Sep 17 00:00:00 2001 From: Jouk Jansen Date: Tue, 9 Dec 2003 10:11:27 +0000 Subject: [PATCH] Committing in . Small VMS issue : sys/param.h is not available on all systems and not needed anyway. Modified Files: Mesa-newtree/src/mesa/main/vsnprintf.c ---------------------------------------------------------------------- --- src/mesa/main/vsnprintf.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/mesa/main/vsnprintf.c b/src/mesa/main/vsnprintf.c index d86dbfe7a03..ab6c740d772 100644 --- a/src/mesa/main/vsnprintf.c +++ b/src/mesa/main/vsnprintf.c @@ -24,7 +24,9 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#include +#ifndef __VMS +# include +#endif #include #include #include