码迷,mamicode.com
首页 > 其他好文 > 详细

Implicit declaration of function 'ether_ntoa' is invalid in C99

时间:2015-01-10 09:59:47      阅读:1152      评论:0      收藏:0      [点我收藏+]

标签:

报错代码:
strcpy(temp, (char *)ether_ntoa(LLADDR(sdl)));

解决方法:

导入这三个头文件即可,
#include <sys/types.h>
#include <sys/socket.h>
#include <net/ethernet.h>

然后上面那行代码会有一个警告:"Incompatible pointer types passing ‘caddr_t‘ (aka ‘char *‘) to parameter of type ‘const struct ether_addr *‘" ;
可以在LLADDR的前面加上(const struct ether_addr *) 也就是这样:
strcpy(temp, (
char *)ether_ntoa((const struct ether_addr *)LLADDR(sdl)));
这样就没有警告了。

 

Implicit declaration of function 'ether_ntoa' is invalid in C99

标签:

原文地址:http://www.cnblogs.com/hw140430/p/4214505.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!