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