summaryrefslogtreecommitdiff
path: root/src/mesa/main/vsnprintf.c
diff options
context:
space:
mode:
authorJouk Jansen <joukj@hrem.stm.tudelft.nl>2003-12-09 10:11:27 +0000
committerJouk Jansen <joukj@hrem.stm.tudelft.nl>2003-12-09 10:11:27 +0000
commit7ac913362770b9f15093bd43769068d966bf913f (patch)
treef0af1c9823f28cee69b8021b4059360a54fe9a02 /src/mesa/main/vsnprintf.c
parent853bda3e7c4dfa7d8cc462729f6a3dce89e44963 (diff)
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 ----------------------------------------------------------------------
Diffstat (limited to 'src/mesa/main/vsnprintf.c')
-rw-r--r--src/mesa/main/vsnprintf.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mesa/main/vsnprintf.c b/src/mesa/main/vsnprintf.c
index d86dbfe7a0..ab6c740d77 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 <sys/param.h>
+#ifndef __VMS
+# include <sys/param.h>
+#endif
#include <sys/types.h>
#include <sys/mman.h>
#include <signal.h>