diff options
Diffstat (limited to 'src/mesa/shader/grammar.h')
-rw-r--r-- | src/mesa/shader/grammar.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mesa/shader/grammar.h b/src/mesa/shader/grammar.h index 622cdb23983..3b537f60403 100644 --- a/src/mesa/shader/grammar.h +++ b/src/mesa/shader/grammar.h @@ -36,13 +36,13 @@ extern "C" { #endif void grammar_alloc_free (void *); -void *grammar_alloc_malloc (unsigned int); -void *grammar_alloc_realloc (void *, unsigned int, unsigned int); +void *grammar_alloc_malloc (size_t); +void *grammar_alloc_realloc (void *, size_t, size_t); void *grammar_memory_copy (void *, const void *, unsigned int); int grammar_string_compare (const byte *, const byte *); -int grammar_string_compare_n (const byte *, const byte *, unsigned int); +int grammar_string_compare_n (const byte *, const byte *, size_t); byte *grammar_string_copy (byte *, const byte *); -byte *grammar_string_copy_n (byte *, const byte *, unsigned int); +byte *grammar_string_copy_n (byte *, const byte *, size_t); byte *grammar_string_duplicate (const byte *); unsigned int grammar_string_length (const byte *); |