Hi, > > the preferred way to include .h files in C++ is like > > #include "verify.h" > > Right, my issue was that the file I need to include has to be wrapped in > an extern "C" because I need to have C linkage with the definitions > provided, but that file in turn includes verify.h.
The right fix is to add extern "C" {} around the declarations and type definitions of that file, but *not* around the #includes that it does. Bruno