comparison tree.c @ 716:3f3e69baaaf8 libavutil

Mark non-exported functions in test and example programs as static.
author diego
date Tue, 31 Mar 2009 09:32:59 +0000
parents ae6e96434bec
children 01f68e5fb9af
comparison
equal deleted inserted replaced
715:6a92aeca1990 716:3f3e69baaaf8
172 print(t->child[1], depth+1); 172 print(t->child[1], depth+1);
173 }else 173 }else
174 av_log(NULL, AV_LOG_ERROR, "NULL\n"); 174 av_log(NULL, AV_LOG_ERROR, "NULL\n");
175 } 175 }
176 176
177 int cmp(const void *a, const void *b){ 177 static int cmp(const void *a, const void *b){
178 return a-b; 178 return a-b;
179 } 179 }
180 180
181 int main(void){ 181 int main(void){
182 int i,k; 182 int i,k;