Module: Mesa Branch: master Commit: ab6f9fccd4f90949ee21e5f5e90cdf152815304b URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=ab6f9fccd4f90949ee21e5f5e90cdf152815304b
Author: José Fonseca <[email protected]> Date: Thu Jan 23 14:20:20 2014 +0000 radeon: More missing stdio.h includes. --- src/gallium/drivers/radeon/r600_pipe_common.h | 2 ++ src/gallium/winsys/radeon/drm/radeon_drm_bo.c | 1 + 2 files changed, 3 insertions(+) diff --git a/src/gallium/drivers/radeon/r600_pipe_common.h b/src/gallium/drivers/radeon/r600_pipe_common.h index bf0b968..6ee20f6 100644 --- a/src/gallium/drivers/radeon/r600_pipe_common.h +++ b/src/gallium/drivers/radeon/r600_pipe_common.h @@ -32,6 +32,8 @@ #ifndef R600_PIPE_COMMON_H #define R600_PIPE_COMMON_H +#include <stdio.h> + #include "../../winsys/radeon/drm/radeon_winsys.h" #include "util/u_range.h" diff --git a/src/gallium/winsys/radeon/drm/radeon_drm_bo.c b/src/gallium/winsys/radeon/drm/radeon_drm_bo.c index ca569a1..2ac060b 100644 --- a/src/gallium/winsys/radeon/drm/radeon_drm_bo.c +++ b/src/gallium/winsys/radeon/drm/radeon_drm_bo.c @@ -41,6 +41,7 @@ #include <xf86drm.h> #include <errno.h> #include <fcntl.h> +#include <stdio.h> /* * this are copy from radeon_drm, once an updated libdrm is released _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
