cosmetics: Remove unused argc/argv parameters from test programs.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26666 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2008-05-03 20:07:04 +00:00
parent 5a233b416f
commit acd931bbbf
1 changed files with 2 additions and 3 deletions

5
configure vendored
View File

@ -3598,8 +3598,7 @@ if test "$_apple_remote" = auto ; then
cat > $TMPC <<EOF
#include <stdio.h>
#include <IOKit/IOCFPlugIn.h>
int main(int argc, const char * argv[])
{
int main(void) {
io_iterator_t hidObjectIterator = (io_iterator_t)NULL;
CFMutableDictionaryRef hidMatchDictionary;
IOReturn ioReturnValue;
@ -4734,7 +4733,7 @@ fi
if test "$_sdl" = auto || test "$_sdl" = yes ; then
cat > $TMPC << EOF
#include <SDL.h>
int main(int argc, char *argv[]) {
int main(void) {
SDL_Init(SDL_INIT_VIDEO|SDL_INIT_NOPARACHUTE);
return 0;
}