summaryrefslogtreecommitdiffstats
path: root/TOOLS
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-02-24 12:53:11 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-02-24 12:53:11 +0000
commit6063301513524ff34eda6f525bbcceb42cacff76 (patch)
treef5d4624636175a5b6ff2af9b70494057bdd63925 /TOOLS
parent160b9e62dc45f0448576bfbb59bc45702cbdfc24 (diff)
downloadmpv-6063301513524ff34eda6f525bbcceb42cacff76.tar.bz2
mpv-6063301513524ff34eda6f525bbcceb42cacff76.tar.xz
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
Diffstat (limited to 'TOOLS')
-rw-r--r--TOOLS/alaw-gen.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/TOOLS/alaw-gen.c b/TOOLS/alaw-gen.c
index 77a8fe9778..0f32ad4d87 100644
--- a/TOOLS/alaw-gen.c
+++ b/TOOLS/alaw-gen.c
@@ -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;
}