new Version 6.5 still does not allow localtime to work on pda

Started by gromit, December 06, 2010, 11:43:38 PM

Previous topic - Next topic

gromit

localtime and gmtime both show error of

Missing prototype for 'localtime'.


#include <time.h>
time_t now;
  struct tm *tm_now;
   now = time ( NULL );
  tm_now = localtime ( &now );

I Did think this was supposed to work in the latest version but perhaps not on PDA

Any Tips Gratefully recieved
gromit :o

ml