main() --> main(void)

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25128 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2007-11-21 09:22:33 +00:00
parent d601affdb1
commit 4bb3d604d5
6 changed files with 6 additions and 6 deletions

View File

@ -45,7 +45,7 @@ static inline long long rdtsc()
#endif
int main(){
int main(void){
int accel=0;
int sample_rate=0;
int bit_rate=0;

View File

@ -337,7 +337,7 @@ fail_out:
}
#if 0
int main(){
int main(void){
read_font_desc("high_arpi.desc",1);

View File

@ -512,7 +512,7 @@ unsigned char buf[W*H*3/2];
char code[256*1024];
main() {
main(void) {
int i, size;
FILE *fp;

View File

@ -71,7 +71,7 @@ void globfree(glob_t *pglob)
}
#if 0
int main(){
int main(void){
glob_t gg;
printf("globtest\n");
glob( "*.jpeg",0,NULL,&gg );

View File

@ -94,7 +94,7 @@ void InitTimer()
#if 0
#include <stdio.h>
int main() {
int main(void) {
int i,j, r, c = 200;
long long t = 0;

View File

@ -65,7 +65,7 @@ void InitTimer(void){
#if 0
void main(){
void main(void){
float t=0;
InitTimer();
while(1){ t+=GetRelativeTime();printf("time= %10.6f\r",t);fflush(stdout); }