每次我在eclipse中输入malloc时都说它无法解决。我收录了<stdlib.h>
有什么问题?我的Windows 8.1 64位上有GCC和Cygwin。 eclipse无法识别malloc
#include<stdio.h>
#include<stdlib.h>
struct node{
int data;
struct node *next;
};
void insertbeg(struct node **href, int n){
struct node *new_node = (struct node*)malloc(sizeof(struct node));
}