gallium: Allow compilation inside X.

This commit is contained in:
José Fonseca
2008-08-07 09:12:55 +01:00
parent cf16285d1b
commit 3b5ee3d6de
2 changed files with 11 additions and 6 deletions
+6 -6
View File
@@ -28,14 +28,14 @@
/**
* @file
* Platform independent functions for string manipulation.
*
*
* @author Jose Fonseca <jrfonseca@tungstengraphics.com>
*/
#ifndef U_STRING_H_
#define U_STRING_H_
#ifndef WIN32
#if !defined(WIN32) && !defined(XF86_LIBC_H)
#include <stdio.h>
#endif
#include <stddef.h>
@@ -48,19 +48,19 @@
extern "C" {
#endif
#ifdef WIN32
int util_vsnprintf(char *, size_t, const char *, va_list);
int util_snprintf(char *str, size_t size, const char *format, ...);
static INLINE void
static INLINE void
util_vsprintf(char *str, const char *format, va_list ap)
{
util_vsnprintf(str, (size_t)-1, format, ap);
}
static INLINE void
static INLINE void
util_sprintf(char *str, const char *format, ...)
{
va_list ap;
+5
View File
@@ -31,8 +31,13 @@
#include "p_config.h"
#ifndef XFree86Server
#include <stdlib.h>
#include <string.h>
#else
#include "xf86_ansic.h"
#include "xf86_libc.h"
#endif
#if defined(_WIN32) && !defined(__WIN32__)