comparison tree.c @ 404:f9a4c04ebb0e libavutil

main() --> main(void)
author diego
date Fri, 23 Nov 2007 00:52:56 +0000
parents c27dddbfe901
children 357ac44f4720
comparison
equal deleted inserted replaced
403:c22fbe7d64cf 404:f9a4c04ebb0e
130 130
131 int cmp(const void *a, const void *b){ 131 int cmp(const void *a, const void *b){
132 return a-b; 132 return a-b;
133 } 133 }
134 134
135 int main(){ 135 int main(void){
136 int i,j,k; 136 int i,j,k;
137 AVTreeNode *root= NULL; 137 AVTreeNode *root= NULL;
138 138
139 for(i=0; i<10000; i++){ 139 for(i=0; i<10000; i++){
140 int j= (random()%863294); 140 int j= (random()%863294);