From: "Eyal Ben-David" To: ma6djh AT bath DOT ac DOT uk cc: djgpp AT delorie DOT com Message-ID: Date: Thu, 1 May 1997 19:17:54 +0300 Subject: Re: C++ and Assembler Mime-Version: 1.0 Content-type: text/plain; charset=US-ASCII Precedence: bulk Hello. If you want to call a C function from a C++ module you will have to use the extern "C" mechanism for example: extern "C" int printf(const char* str, ...); if you want to use more than one function you can write also: extern "C" { int func1(); int func2(); // ... } If you have the time, read header files you can learn a lot. Eyal.