summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/util
diff options
context:
space:
mode:
authorJosé Fonseca <jfonseca@vmware.com>2010-02-02 20:55:08 +0000
committerJosé Fonseca <jfonseca@vmware.com>2010-02-02 20:55:08 +0000
commitaa8b49c9ca6b446e335bda4945e48107e5e4128a (patch)
tree2ffa0d5d3baae9992a6044867f9f24664d5fae16 /src/gallium/auxiliary/util
parent25357696c3f253d44e83798e2a7e7f1f60c5adc5 (diff)
gallium: Move some compiler portability stuff into p_compiler.h
Diffstat (limited to 'src/gallium/auxiliary/util')
-rw-r--r--src/gallium/auxiliary/util/u_debug.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/gallium/auxiliary/util/u_debug.h b/src/gallium/auxiliary/util/u_debug.h
index facc30a553..c9cd56f305 100644
--- a/src/gallium/auxiliary/util/u_debug.h
+++ b/src/gallium/auxiliary/util/u_debug.h
@@ -39,8 +39,6 @@
#define U_DEBUG_H_
-#include <stdarg.h>
-
#include "pipe/p_compiler.h"
@@ -60,11 +58,6 @@ extern "C" {
#endif
-/* MSVC bebore VC7 does not have the __FUNCTION__ macro */
-#if defined(_MSC_VER) && _MSC_VER < 1300
-#define __FUNCTION__ "???"
-#endif
-
#if defined(__GNUC__)
#define _util_printf_format(fmt, list) __attribute__ ((format (printf, fmt, list)))
#else