From: Brian Paul Date: Mon, 31 Jan 2011 21:08:22 +0000 (-0700) Subject: glsl: make _token_list_is_empty_ignoring_space() static X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=aacd07d623d60356cfad9f96a261310e12eed7c0;p=mesa.git glsl: make _token_list_is_empty_ignoring_space() static To silence warning about missing prototype. --- diff --git a/src/glsl/glcpp/glcpp-parse.y b/src/glsl/glcpp/glcpp-parse.y index 65112c94d9d..aa5a0c4f209 100644 --- a/src/glsl/glcpp/glcpp-parse.y +++ b/src/glsl/glcpp/glcpp-parse.y @@ -824,7 +824,7 @@ _token_list_trim_trailing_space (token_list_t *list) } } -int +static int _token_list_is_empty_ignoring_space (token_list_t *l) { token_node_t *n;