#include <stdio.h>
#include <stdlib.h>
struct NODE {
char* name;
int val;
struct NODE* next;
};
typedef struct NODE Node;
Node *head, *tail;
head = (Node*) malloc( sizeof( Node ) ); //line 21
我这样编译:
cc -g -c -o file.tab.o file.tab.c
我收到此错误消息:
file.y:21:1 warning: data definition has no type or storage class [enabled by default]