diff options
author | aljen <[email protected]> | 2009-09-05 23:06:53 +0200 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-09-09 08:24:18 -0600 |
commit | c6c44bf48124dd5b4661014a8d58482c5a54557f (patch) | |
tree | 6472d129b3fefc294b6feaa1bb380a7e207db48d /src/gallium/auxiliary/util/u_debug.h | |
parent | 89a765e92b4847f80848c8be89efbce2d021434b (diff) |
gallium: Added HaikuOS platform
Diffstat (limited to 'src/gallium/auxiliary/util/u_debug.h')
-rw-r--r-- | src/gallium/auxiliary/util/u_debug.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/util/u_debug.h b/src/gallium/auxiliary/util/u_debug.h index d42b65ce281..1380d98d7ee 100644 --- a/src/gallium/auxiliary/util/u_debug.h +++ b/src/gallium/auxiliary/util/u_debug.h @@ -88,6 +88,7 @@ _debug_printf(const char *format, ...) * - avoid outputing large strings (512 bytes is the current maximum length * that is guaranteed to be printed in all platforms) */ +#if !defined(PIPE_OS_HAIKU) static INLINE void debug_printf(const char *format, ...) { @@ -101,6 +102,7 @@ debug_printf(const char *format, ...) #endif } +#endif /* !PIPE_OS_HAIKU */ /* * ... isn't portable so we need to pass arguments in parentheses. |