Lines Matching defs:ctime
878 # undef ctime
879 # if !defined(ctime) && CTIME_R_PROTO == REENTRANT_PROTO_B_SB
880 # define ctime(a) ctime_r(a, PL_reentrant_buffer->_ctime_buffer)
882 # if !defined(ctime) && CTIME_R_PROTO == REENTRANT_PROTO_B_SBI
883 # define ctime(a) ctime_r(a, PL_reentrant_buffer->_ctime_buffer, PL_reentrant_buffer->_ctime_size)
885 # if !defined(ctime) && CTIME_R_PROTO == REENTRANT_PROTO_I_SB
886 # define ctime(a) (ctime_r(a, PL_reentrant_buffer->_ctime_buffer) == 0 ? PL_reentrant_buffer->_ctime_buffer : 0)
888 # if !defined(ctime) && CTIME_R_PROTO == REENTRANT_PROTO_I_SBI
889 # define ctime(a) (ctime_r(a, PL_reentrant_buffer->_ctime_buffer, PL_reentrant_buffer->_ctime_size) == 0 ? PL_reentrant_buffer->_ctime_buffer : 0)
891 # if defined(ctime)