Add MPLAYER_ prefix to multiple inclusion guard of generated file.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26089 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2008-02-24 12:53:11 +00:00
parent 160b9e62dc
commit 6063301513
1 changed files with 3 additions and 3 deletions

View File

@ -15,8 +15,8 @@ system("sox -t raw -A -r 8000 -b alaw.dat -t sw alaw.out");
printf("// Generated by TOOLS/alaw-gen.c\n\n");
printf("#ifndef ALAW_H\n");
printf("#define ALAW_H\n");
printf("#ifndef MPLAYER_ALAW_H\n");
printf("#define MPLAYER_ALAW_H\n");
printf("\nconst short alaw2short[]={\n");
@ -46,7 +46,7 @@ for(i=0;i<256;i++){
fclose(f);
printf("};\n\n");
printf("#endif /* ALAW_H */\n");
printf("#endif /* MPLAYER_ALAW_H */\n");
return 0;
}