Date: Mon, 30 Sep 2002 01:50:15 -0400 From: "Lyndon Griffin" <lyndon@bsd4us.org> To: freebsd-questions@freebsd.org Subject: Re: C++ symbol mangling Message-ID: <20020930055015.18906.qmail@bsd4us.org> In-Reply-To: <20020930053326.18827.qmail@bsd4us.org> References: <20020930053326.18827.qmail@bsd4us.org>
next in thread | previous in thread | raw e-mail | index | archive | help
Lyndon Griffin writes: > The questions: > 1) Are the ctype.h definitions getting in the way? > 2) Is there a compiler flag to prevent this behavior? If so, what is it? > 3) Barring the compiler flag, could someone architect for me a macro or > two that would prevent this problem? Answering my own question, ctype.h is the culprit... it contains 2 macros that look like this: #define tolower(c) __tolower(c) #define toupper(c) __toupper(c) I'm working on some trickery to get around this, but any comments or suggestions are welcome. Sorry for the spam... <:) Lyndon http://bsd4us.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20020930055015.18906.qmail>