mirror of
https://github.com/mpv-player/mpv
synced 2024-12-24 07:33:46 +01:00
main() --> main(void)
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25128 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
d601affdb1
commit
4bb3d604d5
@ -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;
|
||||
|
@ -337,7 +337,7 @@ fail_out:
|
||||
}
|
||||
|
||||
#if 0
|
||||
int main(){
|
||||
int main(void){
|
||||
|
||||
read_font_desc("high_arpi.desc",1);
|
||||
|
||||
|
@ -512,7 +512,7 @@ unsigned char buf[W*H*3/2];
|
||||
char code[256*1024];
|
||||
|
||||
|
||||
main() {
|
||||
main(void) {
|
||||
int i, size;
|
||||
FILE *fp;
|
||||
|
||||
|
@ -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 );
|
||||
|
@ -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;
|
||||
|
||||
|
@ -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); }
|
||||
|
Loading…
Reference in New Issue
Block a user