Subject: Re: compiler issues C/C++ linkage
To: Tom <th.tom@gmx.de>
From: Martin Husemann <martin@duskware.de>
List: netbsd-users
Date: 12/20/2005 21:07:39
Something new learned today: I have been pointed at the "specialness"
of /usr/include for gcc/g++ - it implies extern "C" and you can not
just include C++ headers from there.

Adding a 

 extern "C++" {
 ..
 }

around your #include <list> fixes the problem.

Martin