Replace use of ctime_r with ctime+strcpy
ctime_r is not implemented on at least one supported platfrom. Fortunately in the single thread application the same effect can be achieved with ctime and strcpy.
Replace use of ctime_r with ctime+strcpy
ctime_r is not implemented on at least one supported platfrom. Fortunately
in the single thread application the same effect can be achieved with ctime
and strcpy.