Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | Download | 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 * tim_p _AND
  11.         struct tm *res)
  12. {
  13.   return (_mktm_r (tim_p, res, 1));
  14. }
  15.