diff options
author | Vinson Lee <[email protected]> | 2010-02-17 23:19:24 -0800 |
---|---|---|
committer | Vinson Lee <[email protected]> | 2010-02-17 23:19:24 -0800 |
commit | 869896f162708e820bcc7e45576258d8ff31ccb0 (patch) | |
tree | 95d601dedc919773263a1220524ef27da843009a /progs/rbug | |
parent | 9f5640d10b3c29260418c0acd0b5466b112f6ecd (diff) |
progs/rbug: Add missing headers.
Diffstat (limited to 'progs/rbug')
-rw-r--r-- | progs/rbug/bin_to_bmp.c | 1 | ||||
-rw-r--r-- | progs/rbug/ctx_rule.c | 2 | ||||
-rw-r--r-- | progs/rbug/shdr_disable.c | 2 | ||||
-rw-r--r-- | progs/rbug/tex_dump.c | 1 |
4 files changed, 6 insertions, 0 deletions
diff --git a/progs/rbug/bin_to_bmp.c b/progs/rbug/bin_to_bmp.c index 6e9b162a6f7..40ae6290909 100644 --- a/progs/rbug/bin_to_bmp.c +++ b/progs/rbug/bin_to_bmp.c @@ -32,6 +32,7 @@ #include "util/u_debug.h" #include "util/u_format.h" #include "util/u_network.h" +#include "util/u_string.h" #include "util/u_tile.h" static uint8_t* rbug_read(const char *filename, unsigned size); diff --git a/progs/rbug/ctx_rule.c b/progs/rbug/ctx_rule.c index e38b7b4e9ba..dccebfb79fb 100644 --- a/progs/rbug/ctx_rule.c +++ b/progs/rbug/ctx_rule.c @@ -22,6 +22,8 @@ * USE OR OTHER DEALINGS IN THE SOFTWARE. */ +#include <stdio.h> + #include "pipe/p_compiler.h" #include "pipe/p_format.h" #include "util/u_memory.h" diff --git a/progs/rbug/shdr_disable.c b/progs/rbug/shdr_disable.c index e6b12073d86..a80a841a77c 100644 --- a/progs/rbug/shdr_disable.c +++ b/progs/rbug/shdr_disable.c @@ -22,6 +22,8 @@ * USE OR OTHER DEALINGS IN THE SOFTWARE. */ +#include <stdio.h> + #include "pipe/p_compiler.h" #include "pipe/p_format.h" #include "util/u_memory.h" diff --git a/progs/rbug/tex_dump.c b/progs/rbug/tex_dump.c index e99f5a72b6a..dd30d309083 100644 --- a/progs/rbug/tex_dump.c +++ b/progs/rbug/tex_dump.c @@ -29,6 +29,7 @@ #include "util/u_debug.h" #include "util/u_format.h" #include "util/u_network.h" +#include "util/u_string.h" #include "util/u_tile.h" #include "rbug/rbug.h" |