~mingw-w64/mingw-w64/experimental

« back to all changes in this revision

Viewing changes to ros-privexp/mingw-w64-crt/misc/_mktime32.c

  • Committer: NightStrike
  • Date: 2010-08-11 22:20:57 UTC
  • Revision ID: svn-v4:4407c894-4637-0410-b4f5-ada5f102cad1:experimental:3266
Branch for adding option for supporting ros

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef __NO_INLINE__
 
2
#define __NO_INLINE__
 
3
#endif
 
4
#include <time.h>
 
5
 
 
6
extern __time32_t (__cdecl *__MINGW_IMP_SYMBOL(mktime))(struct tm *);
 
7
 
 
8
__time32_t __cdecl _mktime32(struct tm *_Tm)
 
9
{
 
10
  return (*__MINGW_IMP_SYMBOL(mktime))(_Tm);
 
11
}
 
12