Mark main() function as a function that takes no parameters.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23682 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2007-06-27 23:04:36 +00:00
parent 3a7a591aad
commit cf59dbbd17
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@
// sox -t raw -A -r 8000 -b alaw.alaw -t sw alaw.out
int main(){
int main(void){
int i;
FILE *f;

View File

@ -1,6 +1,6 @@
#include <stdio.h>
int main(){
int main(void){
int c;
unsigned int head=-1;
int pos=-3;