projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d37363d
)
declar vsnprintf for OS/2 and VMS (Evgeny Kotsuba)
author
Brian Paul
<brian.paul@tungstengraphics.com>
Sun, 1 Dec 2002 13:59:11 +0000
(13:59 +0000)
committer
Brian Paul
<brian.paul@tungstengraphics.com>
Sun, 1 Dec 2002 13:59:11 +0000
(13:59 +0000)
src/mesa/main/imports.c
patch
|
blob
|
history
diff --git
a/src/mesa/main/imports.c
b/src/mesa/main/imports.c
index 75ca33a69370aa30b7a97d264c9b347178636733..fc94183e41b68527b6832dae3978c11b705528a3 100644
(file)
--- a/
src/mesa/main/imports.c
+++ b/
src/mesa/main/imports.c
@@
-1,8
+1,8
@@
-/* $Id: imports.c,v 1.2
5 2002/10/30 20:40:46
brianp Exp $ */
+/* $Id: imports.c,v 1.2
6 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