comparison mangle.h @ 54:37883194f1d0 libpostproc

Remove leading underscores from specifiers, they are reserved.
author diego
date Mon, 02 Jul 2007 17:00:04 +0000
parents da3bfee1fa67
children
comparison
equal deleted inserted replaced
53:e6a94aa12c17 54:37883194f1d0
19 * You should have received a copy of the GNU General Public License 19 * You should have received a copy of the GNU General Public License
20 * along with FFmpeg; if not, write to the Free Software 20 * along with FFmpeg; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22 */ 22 */
23 23
24 #ifndef __MANGLE_H 24 #ifndef MANGLE_H
25 #define __MANGLE_H 25 #define MANGLE_H
26 26
27 /* Feel free to add more to the list, eg. a.out IMO */ 27 /* Feel free to add more to the list, eg. a.out IMO */
28 /* Use rip-relative addressing if compiling PIC code on x86-64. */ 28 /* Use rip-relative addressing if compiling PIC code on x86-64. */
29 #if defined(__CYGWIN__) || defined(__MINGW32__) || defined(__OS2__) || \ 29 #if defined(__CYGWIN__) || defined(__MINGW32__) || defined(__OS2__) || \
30 (defined(__OpenBSD__) && !defined(__ELF__)) 30 (defined(__OpenBSD__) && !defined(__ELF__))
41 #else 41 #else
42 #define MANGLE(a) #a 42 #define MANGLE(a) #a
43 #endif 43 #endif
44 #endif 44 #endif
45 45
46 #endif /* !__MANGLE_H */ 46 #endif /* !MANGLE_H */
47 47