我试图制作自己的头文件,但它不起作用vim
说
wget.h:2:2: error: invalid preprocessing directive #ifndef__WGET_H__
wget.h:3:2: error: invalid preprocessing directive #define__WGET_H__
wget.h:7:2: error: #endif without #if
我的代码是这样的:
//wget header file
#ifndef__WGET_H__
#define__WGET_H__
int my_wget (char web_address[]);
#endif /*__WGET_H__*/
对我来说似乎很好(我读过的例子和我的很相似),我不知道出了什么问题。有任何想法吗?