函数'malloc'无法解析

时间:2017-12-08 04:35:37

标签: c eclipse malloc

每次我在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)); 
    }

0 个答案:

没有答案