diff options
author | Diego Biurrun <diego@biurrun.de> | 2007-07-02 17:00:04 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-07-02 17:00:04 +0000 |
commit | 224906414b7f157416dabc4f98c0d3076c631521 (patch) | |
tree | 73b8e0760d8dcdef94053e702fc475d4e5d572a3 /libpostproc | |
parent | 064cd7a89770478a992f2e932402bf064a0a7024 (diff) | |
download | ffmpeg-224906414b7f157416dabc4f98c0d3076c631521.tar.gz |
Remove leading underscores from specifiers, they are reserved.
Originally committed as revision 9461 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libpostproc')
-rw-r--r-- | libpostproc/mangle.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libpostproc/mangle.h b/libpostproc/mangle.h index 3521fa9bb5..1913270beb 100644 --- a/libpostproc/mangle.h +++ b/libpostproc/mangle.h @@ -21,8 +21,8 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef __MANGLE_H -#define __MANGLE_H +#ifndef MANGLE_H +#define MANGLE_H /* Feel free to add more to the list, eg. a.out IMO */ /* Use rip-relative addressing if compiling PIC code on x86-64. */ @@ -43,5 +43,5 @@ #endif #endif -#endif /* !__MANGLE_H */ +#endif /* !MANGLE_H */ |