expected unqualified-id

Discussion to talk about software related topics only.
Post Reply
jkovach
Posts: 11
Joined: Tue Jul 29, 2008 5:30 pm

expected unqualified-id

Post by jkovach »

Everything was going along fine, then while writing header files using C++ classes. Then while writing the functions for the classes and making calls into header files such as fat.h and fileutils.h I start getting the error msg ""expected unqualified-id". The error points to the extern "C" line in both files with the following code:

#ifdef __cplusplus
extern "C"
{
#endif

How do I make it stop?
Post Reply