Fix multiple inclusion guards, identifiers starting with __ are reserved

for the system.


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25198 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2007-11-29 14:23:24 +00:00
parent 09270628da
commit df58d5f00d
2 changed files with 6 additions and 6 deletions

View File

@ -11,8 +11,8 @@
//=============================================================================
*/
#ifndef __af_format_alaw_c
#define __af_format_alaw_c
#ifndef AF_FORMAT_ALAW_C
#define AF_FORMAT_ALAW_C
#include <inttypes.h>
@ -311,4 +311,4 @@ static int to_alaw(void* in, void* out, int len, int bps, int format)
}
return AF_OK;
}
#endif /* __af_format_alaw_c */
#endif /* AF_FORMAT_ALAW_C */

View File

@ -11,8 +11,8 @@
//=============================================================================
*/
#ifndef __af_format_ulaw_c
#define __af_format_ulaw_c
#ifndef AF_FORMAT_ULAW_C
#define AF_FORMAT_ULAW_C
#include <inttypes.h>
@ -824,4 +824,4 @@ static int to_ulaw(void* in, void* out, int len, int bps, int format)
return AF_OK;
}
#endif /* __af_format_ulaw_c */
#endif /* AF_FORMAT_ULAW_C */