~ubuntu-branches/debian/wheezy/vlc/wheezy

« back to all changes in this revision

Viewing changes to extras/ffmpeg/libavcodec/libpostproc/mangle.h

Tags: upstream-0.7.2.final
ImportĀ upstreamĀ versionĀ 0.7.2.final

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* mangle.h - This file has some CPP macros to deal with different symbol
 
2
 * mangling across binary formats.
 
3
 * (c)2002 by Felix Buenemann <atmosfear at users.sourceforge.net>
 
4
 * File licensed under the GPL, see http://www.fsf.org/ for more info.
 
5
 */
 
6
 
 
7
#ifndef __MANGLE_H
 
8
#define __MANGLE_H
 
9
 
 
10
/* Feel free to add more to the list, eg. a.out IMO */
 
11
#if defined(__CYGWIN__) || defined(__MINGW32__) || defined(__OS2__) || \
 
12
   (defined(__OpenBSD__) && !defined(__ELF__))
 
13
#define MANGLE(a) "_" #a
 
14
#else
 
15
#define MANGLE(a) #a
 
16
#endif
 
17
 
 
18
#endif /* !__MANGLE_H */
 
19