projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
971df9b
)
Coerce vsnprintf to _vsnprintf for windows
author
Karl Schultz
<kschultz@freedesktop.org>
Sat, 3 Aug 2002 16:19:20 +0000
(16:19 +0000)
committer
Karl Schultz
<kschultz@freedesktop.org>
Sat, 3 Aug 2002 16:19:20 +0000
(16:19 +0000)
src/mesa/main/imports.c
patch
|
blob
|
history
diff --git
a/src/mesa/main/imports.c
b/src/mesa/main/imports.c
index a1329c6c8f54dd4f6af8443ea1263fde6d6c0c00..bd62f279aad10f6f66b230e435e6571354440ec9 100644
(file)
--- a/
src/mesa/main/imports.c
+++ b/
src/mesa/main/imports.c
@@
-1,4
+1,4
@@
-/* $Id: imports.c,v 1.1
7 2002/08/01 15:10:23 brianp
Exp $ */
+/* $Id: imports.c,v 1.1
8 2002/08/03 16:19:20 kschultz
Exp $ */
/*
* Mesa 3-D graphics library
@@
-49,6
+49,9
@@
#define MAXSTRING 4000 /* for vsnprintf() */
+#ifdef WIN32
+#define vsnprintf _vsnprintf
+#endif
static void *
_mesa_Malloc(__GLcontext *gc, size_t size)