diff options
author | Matt Turner <[email protected]> | 2012-08-22 18:44:54 -0700 |
---|---|---|
committer | Andreas Boll <[email protected]> | 2012-11-16 10:01:46 +0100 |
commit | 1f82bf12edb37a91991fdae59cf0cc36c9f49278 (patch) | |
tree | 4db42cf2046e12cf55480276d74ca48f4177ec22 /src/mesa/main/imports.c | |
parent | 900f5eb7a8b62f9dc50f3fb2739111c546baeaec (diff) |
Remove OpenVMS support
Not maintained since 2008. Doubtful that it's worked in quite a while.
Also see commit 32ac8cb05 which removed VMS stuff from Makefile in 2009.
Cc: Jouk Jansen <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
Signed-off-by: Andreas Boll <[email protected]>
Diffstat (limited to 'src/mesa/main/imports.c')
-rw-r--r-- | src/mesa/main/imports.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/mesa/main/imports.c b/src/mesa/main/imports.c index ed324b588df..76f835e0ec3 100644 --- a/src/mesa/main/imports.c +++ b/src/mesa/main/imports.c @@ -59,11 +59,8 @@ #ifdef _WIN32 #define vsnprintf _vsnprintf -#elif defined(__IBMC__) || defined(__IBMCPP__) || ( defined(__VMS) && __CRTL_VER < 70312000 ) +#elif defined(__IBMC__) || defined(__IBMCPP__) extern int vsnprintf(char *str, size_t count, const char *fmt, va_list arg); -#ifdef __VMS -#include "vsnprintf.c" -#endif #endif /**********************************************************************/ |