提问人:Kyle 提问时间:5/16/2020 最后编辑:Kyle 更新时间:8/3/2022 访问量:1957
警告:函数“malloc”的隐式声明,即使包含 <stdlib.h>也是如此
Warning: implicit declaration of function ‘malloc’, even if <stdlib.h> is included
问:
这是一段代码的摘录,我在其中用数组的元素填充了一个列表。
#include <stdlib.h>
#include <stdio.h>
#include "../../lib/kernel/list.h"
#include "./listpop.h"
struct item {
struct list_elem elem;
int value;
int priority;
};
void populate(struct list * l, int * a, int n);
void populate(struct list * l, int * a, int n)
{
int i = 0;
while(i != n) {
struct item * newitem = malloc(sizeof(struct item));
newitem->value = a[i];
list_push_back(l,newitem);
i++;
}
}
void test_assignment_1()
{ struct list our_list;
list_init(&our_list);
populate(&our_list, ITEMARRAY, ITEMCOUNT);
}
list.h 中的代码:
/* List element. */
struct list_elem
{
struct list_elem *prev; /* Previous list element. */
struct list_elem *next; /* Next list element. */
};
/* List. */
struct list
{
struct list_elem head; /* List head. */
struct list_elem tail; /* List tail. */
};
void list_init (struct list *);
list.c 中的代码:
/* Initializes LIST as an empty list. */
void
list_init (struct list *list)
{
ASSERT (list != NULL);
list->head.prev = NULL;
list->head.next = &list->tail;
list->tail.prev = &list->head;
list->tail.next = NULL;
}
最后,listpop.h 中的代码:
#define ITEMCOUNT 10
int ITEMARRAY[ITEMCOUNT] = {3,1,4,2,7,6,9,5,8,3};
以下是我收到的警告:
warning: implicit declaration of function ‘malloc’
warning: incompatible implicit declaration of built-in function ‘malloc’
到目前为止,我所读到的关于这些警告的所有内容都是添加 stdlib.h,但正如您从我的代码中看到的那样,我已经这样做了,并且代码仍然给我这些警告。我已经多次重新启动代码,因此错误位于代码中的某个位置。
有谁知道这里有什么不起作用吗?
答:
0赞
chqrlie
5/16/2020
#1
您可能正在使用不符合标准的编译器和/或 C 库在过时的系统上进行编译。尝试先包含标准标头,并始终包含标准标头。<malloc.h>
<stdlib.h>
评论
0赞
Kyle
5/16/2020
我在开头添加了代码,但它给了我一个错误。#include <malloc.h>
0赞
chqrlie
5/16/2020
@Kyle:好吧,不是正确的解释。您是否在另一个包含之前移动了 和其他标准标头?#include <stdlib.h>
0赞
Kyle
5/16/2020
是的,它仍然给我一个错误 <malloc.h>。我在虚拟机上运行代码。这可能是问题所在吗?
评论
struct list_elem