I think I've seen something like this before and someone had an explanation:
time_convert.c:5: warning: initialization makes pointer from integer without a castCode:#include <time.h>
#include <stdio.h>
int main() {
struct tm *data = getdate("1/1/2010 12 AM");
return 0;
}
From /usr/include/time.h:
Code:extern struct tm *getdate (__const char *__string);

