From: Sven Verdoolaege Date: Sun, 7 Jun 2009 14:29:08 +0000 (+0200) Subject: isl_input_omega.c: make variable_{free,new} static X-Git-Tag: isl-0.01~174 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a91b8c58bd07d23021e7e9d1d5204333d14df645;p=platform%2Fupstream%2Fisl.git isl_input_omega.c: make variable_{free,new} static --- diff --git a/isl_input_omega.c b/isl_input_omega.c index cd02cc5..4fe49bd 100644 --- a/isl_input_omega.c +++ b/isl_input_omega.c @@ -30,7 +30,7 @@ static struct vars *vars_new(struct isl_ctx *ctx) return v; } -void variable_free(struct variable *var) +static void variable_free(struct variable *var) { while (var) { struct variable *next = var->next; @@ -48,7 +48,7 @@ static void vars_free(struct vars *v) free(v); } -struct variable *variable_new(struct vars *v, const char *name, int len, +static struct variable *variable_new(struct vars *v, const char *name, int len, int pos) { struct variable *var;