Subversion Repositories Kolibri OS

Rev

Rev 4874 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

  1. /*
  2.  * gmtime_r.c
  3.  */
  4.  
  5. #include <time.h>
  6. #include "local.h"
  7.  
  8. struct tm *
  9. _DEFUN (gmtime_r, (tim_p, res),
  10.         _CONST time_t *__restrict tim_p _AND
  11.         struct tm *__restrict res)
  12. {
  13.   return (_mktm_r (tim_p, res, 1));
  14. }
  15.