comparison mangle.h @ 5872:02576893af2a

OpenBSD, NetBSD portability patches by Bj«Órn Sandell <biorn@dce.chalmers.se> Marcus <core@antbear.org> Bernd Ernesti <mplayer@lists.veego.de>
author arpi
date Sat, 27 Apr 2002 22:42:27 +0000
parents 9917a783d5de
children a8caf30732de
comparison
equal deleted inserted replaced
5871:c03422eaaadf 5872:02576893af2a
6 6
7 #ifndef __MANGLE_H 7 #ifndef __MANGLE_H
8 #define __MANGLE_H 8 #define __MANGLE_H
9 9
10 /* Feel free to add more to the list, eg. a.out IMO */ 10 /* Feel free to add more to the list, eg. a.out IMO */
11 #if defined(__CYGWIN__) || defined(__OS2__) 11 #if defined(__CYGWIN__) || defined(__OS2__) || defined (__OpenBSD__)
12 #define MANGLE(a) "_" #a 12 #define MANGLE(a) "_" #a
13 #else 13 #else
14 #define MANGLE(a) #a 14 #define MANGLE(a) #a
15 #endif 15 #endif
16 16