# HG changeset patch # User atmos4 # Date 1011415221 0 # Node ID 05ad38cc03383700ca5a1bab9af435ec4e466a78 # Parent bbfbe9bbb956373bae81edb7856b5523ba10f3c7 mangle.h does symbolmangling on win32 diff -r bbfbe9bbb956 -r 05ad38cc0338 mangle.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mangle.h Sat Jan 19 04:40:21 2002 +0000 @@ -0,0 +1,18 @@ +/* mangle.h - This file has some CPP macros to deal with different symbol + * mangling across binary formats. + * (c)2002 by Felix Buenemann + * File licensed under the GPL, see http://www.fsf.org/ for more info. + */ + +#ifndef __MANGLE_H +#define __MANGLE_H + +/* Feel free to add more to the list, eg. a.out IMO */ +#if defined(__CYGWIN__) +#define MANGLE(a) "_" #a +#else +#define MANGLE(a) #a +#endif + +#endif /* !__MANGLE_H */ +