Message-ID: <364D09BB.1DA3613A@montana.com> Date: Fri, 13 Nov 1998 21:40:27 -0700 From: bowman X-Mailer: Mozilla 4.5 [en] (Win95; I) X-Accept-Language: en MIME-Version: 1.0 To: djgpp AT delorie DOT com Subject: Re: NASM "name mangling" References: <72ifbf$4qm$1 AT news DOT metronet DOT de> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Reply-To: djgpp AT delorie DOT com Felix wrote: > > I'm using NASM 0.97 and I'm having problems with the "name mangling" feature > test.cpp: > extern int nasmtest(int* x, int* y); try: extern "C" int nasmtest(int*x, int* y); and leave the assembler name alone.