# HG changeset patch # User diego # Date 1203857591 0 # Node ID 044b3c830459da067dbaae6aa771e7adcb27313f # Parent 5ce6348b1a6e9c7d35feb3fc3c6faddd58933ef9 Add MPLAYER_ prefix to multiple inclusion guard of generated file. diff -r 5ce6348b1a6e -r 044b3c830459 TOOLS/alaw-gen.c --- 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; }