diff options
author | Jouk Jansen <[email protected]> | 2003-12-09 10:11:27 +0000 |
---|---|---|
committer | Jouk Jansen <[email protected]> | 2003-12-09 10:11:27 +0000 |
commit | 7ac913362770b9f15093bd43769068d966bf913f (patch) | |
tree | f0af1c9823f28cee69b8021b4059360a54fe9a02 /src/mesa | |
parent | 853bda3e7c4dfa7d8cc462729f6a3dce89e44963 (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')
-rw-r--r-- | src/mesa/main/vsnprintf.c | 4 |
1 files changed, 3 insertions, 1 deletions
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 <sys/param.h> +#ifndef __VMS +# include <sys/param.h> +#endif #include <sys/types.h> #include <sys/mman.h> #include <signal.h> |