From: Vinson Lee Date: Fri, 27 Feb 2015 05:00:15 +0000 (-0800) Subject: r300g/tests: Include stdio.h. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8170eba7e7c37235bd5fad2f9adfdd0eda8e3246;p=mesa.git r300g/tests: Include stdio.h. Fix build error. CC compiler/tests/r300_compiler_tests-radeon_compiler_regalloc_tests.o compiler/tests/radeon_compiler_regalloc_tests.c: In function ‘test_runner_rc_regalloc’: compiler/tests/radeon_compiler_regalloc_tests.c:57:3: error: implicit declaration of function ‘fprintf’ [-Werror=implicit-function-declaration] fprintf(stderr, "Failed to load program\n"); ^ Signed-off-by: Vinson Lee --- diff --git a/src/gallium/drivers/r300/compiler/tests/radeon_compiler_regalloc_tests.c b/src/gallium/drivers/r300/compiler/tests/radeon_compiler_regalloc_tests.c index 5306b08aa7c..e1b6b248fe2 100644 --- a/src/gallium/drivers/r300/compiler/tests/radeon_compiler_regalloc_tests.c +++ b/src/gallium/drivers/r300/compiler/tests/radeon_compiler_regalloc_tests.c @@ -23,6 +23,8 @@ * Author: Tom Stellard */ +#include + #include "radeon_program_pair.h" #include "r300_compiler_tests.h"