程序编译出现错误,求高手指点
有如下一段程序:#ifdef _MSC_VER
#pragma pack(push,8)
#endif /* _MSC_VER */
#ifdef __cplusplus
extern "C" {
#endif
/* Define _CRTIMP */
#ifndef _CRTIMP
#ifdef _DLL
#define _CRTIMP __declspec(dllimport)
#else /* ndef _DLL */
#define _CRTIMP
#endif /* _DLL */
#endif /* _CRTIMP */
经编译之后出现如下错误提示:
d:\program files\microsoft visual studio\vc98\include\wctype.h(34) : error C2144: syntax error : missing ';' before type 'int'
请问是什么问题?望高手们给我排疑解难啊。