Mercurial > mplayer.hg
changeset 26057:044b3c830459
Add MPLAYER_ prefix to multiple inclusion guard of generated file.
author | diego |
---|---|
date | Sun, 24 Feb 2008 12:53:11 +0000 |
parents | 5ce6348b1a6e |
children | e2ee46838240 |
files | TOOLS/alaw-gen.c |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/TOOLS/alaw-gen.c Sun Feb 24 12:41:51 2008 +0000 +++ b/TOOLS/alaw-gen.c Sun Feb 24 12:53:11 2008 +0000 @@ -15,8 +15,8 @@ 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 @@ fclose(f); printf("};\n\n"); -printf("#endif /* ALAW_H */\n"); +printf("#endif /* MPLAYER_ALAW_H */\n"); return 0; }