diff options
author | Brian Paul <[email protected]> | 2002-12-01 13:59:11 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2002-12-01 13:59:11 +0000 |
commit | e7cf569475a2baed8f372d81657fc3516666d6ac (patch) | |
tree | bebea4fdcd8b995c962cc459a99d6e7342f8f622 /src/mesa/main/imports.c | |
parent | d37363d4c042c951cf270dfb88926590658f3262 (diff) |
declar vsnprintf for OS/2 and VMS (Evgeny Kotsuba)
Diffstat (limited to 'src/mesa/main/imports.c')
-rw-r--r-- | src/mesa/main/imports.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mesa/main/imports.c b/src/mesa/main/imports.c index 75ca33a6937..fc94183e41b 100644 --- a/src/mesa/main/imports.c +++ b/src/mesa/main/imports.c @@ -1,8 +1,8 @@ -/* $Id: imports.c,v 1.25 2002/10/30 20:40:46 brianp Exp $ */ +/* $Id: imports.c,v 1.26 2002/12/01 13:59:11 brianp Exp $ */ /* * Mesa 3-D graphics library - * Version: 5.0 + * Version: 5.0.1 * * Copyright (C) 1999-2002 Brian Paul All Rights Reserved. * @@ -56,6 +56,8 @@ #ifdef WIN32 #define vsnprintf _vsnprintf +#elif defined(__IBMC__) || defined(__IBMCPP__) || defined(VMS) +extern int vsnprintf(char *str, size_t count, const char *fmt, va_list arg); #endif |