Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm getting this error:

warning: incompatible implicit declaration of built-in function ‘malloc’

Trying to do this:

fileinfo_list* tempList = malloc(sizeof(fileinfo_list));

Just for the reference the struct used at hand is:

typedef struct {
    fileinfo** filedata;  
    size_t nFiles;    
    size_t size;  
    size_t fileblock;  
} fileinfo_list;

I don't see anything wrong with what I've done? I'm just creating a tempList with the size of 1 x fileinfo_list.

share|improve this question
1  
possible duplicate of Why do I get a warning everytime I use malloc? – Oded Nov 1 '11 at 14:14

3 Answers

up vote 45 down vote accepted

You likely forgot to include <stdlib.h>.

share|improve this answer
ahh thanks :) still getting the hang of C, first C program coming from java :) – HPM Aug 13 '11 at 13:53

You need to #include <stdlib.h> otherwise it's defined as int malloc() which is incompatible with the built-in type void *malloc(size_t).

share|improve this answer

You're missing #include <stdlib.h>.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.