emp1953 <[EMAIL PROTECTED]> wrote:
> I have a make file that has a bunch of .cpp files and ONE .c file.
> It gives the following error on the .c file
> 
> there is a compiler or linker error. Most of the include header files
> are either not found or do not exist.
> 
> There as to be a way to co-mingle code here.  There are some header
> files that are in the c++ code that have function calls that are
> needed by the C code. 

Are those functions marked by 

   extern "C" 

as in

   extern "C" int foo(int parameter);

or

   extern "C" {
   
     int foo(int parameter);

  }

?

Andre'
_______________________________________________
help-gplusplus mailing list
help-gplusplus@gnu.org
http://lists.gnu.org/mailman/listinfo/help-gplusplus

Reply via email to