I am using netbeans8.0.1 on lubuntu and I can not get past my malloc instances in the debugging environment. I just get to my build tree malloc function and the dissembly window appears saying "!Source not found, file: malloc.c, line: 2,876". I had this same code working on xcode but now that I am using linux and netbeans it will not run. By the way this is with the c programming language and the code is for a parser and automated differentiation tool. I am new to the c language but as I said before I had this very same program working on xcode but when I brought it to my laptop for further development I ran into this problem.
struct node *buildtree(){
struct node* name=(struct node*)malloc(sizeof(struct node));
name->val=0;
name->sym='\0';
return name;
};