当前位置: 技术问答>linux和unix
Linux 源码 list.h的编译问题
来源: 互联网 发布时间:2016-07-23
本文导语: 在使用list.h时,对于 static inline void __list_add(struct list_head *new, struct list_head *prev, struct list_head *next) 编译器总是报错——“new”的前面未加“,”。 为什么呢?怎样才能通过编译? ...
在使用list.h时,对于
static inline void __list_add(struct list_head *new,
struct list_head *prev,
struct list_head *next)
编译器总是报错——“new”的前面未加“,”。
为什么呢?怎样才能通过编译?
static inline void __list_add(struct list_head *new,
struct list_head *prev,
struct list_head *next)
编译器总是报错——“new”的前面未加“,”。
为什么呢?怎样才能通过编译?
|
难道是因为new是个关键字?
换个名字试试?
换个名字试试?
|
报错不代表问题在那里
lz上完整代码
还有说明你的详细目的
lz上完整代码
还有说明你的详细目的
|
上代码