From: Brian Paul Date: Thu, 10 Dec 2009 15:25:35 +0000 (-0700) Subject: glsl/pp: make some functions static X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0d654a7f2cf173723eee930d2e5b9a1dd0140aaf;p=mesa.git glsl/pp: make some functions static --- diff --git a/src/glsl/pp/sl_pp_token.c b/src/glsl/pp/sl_pp_token.c index 03f2f09cfd6..e9a60b6c508 100644 --- a/src/glsl/pp/sl_pp_token.c +++ b/src/glsl/pp/sl_pp_token.c @@ -35,7 +35,7 @@ #define PURE_ERROR 256 -int +static int _pure_getc(struct sl_pp_context *context) { char c; @@ -52,7 +52,7 @@ _pure_getc(struct sl_pp_context *context) } -void +static void _pure_ungetc(struct sl_pp_context *context, int c) { @@ -508,7 +508,7 @@ _tokenise_number(struct sl_pp_context *context, } -int +static int sl_pp_token_get(struct sl_pp_context *context, struct sl_pp_token_info *out) {