git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18733 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2008-08-20 15:50:21 +00:00
Родитель fef047dfb0
Коммит 22c4bdcd18
2 изменённых файлов: 10 добавлений и 7 удалений

Просмотреть файл

@ -1,3 +1,7 @@
Thu Aug 21 00:49:50 2008 NAKAMURA Usaku <usa@ruby-lang.org>
* strftime.c: win32 support.
Thu Aug 21 00:20:05 2008 Shugo Maeda <shugo@ruby-lang.org>
* strftime.c: new file.

Просмотреть файл

@ -57,8 +57,10 @@
#endif
#if defined(TM_IN_SYS_TIME) || !defined(GAWK) && !defined(_WIN32_WCE)
#include <sys/types.h>
#if HAVE_SYS_TIME_H
#include <sys/time.h>
#endif
#endif
/* defaults: season to taste */
#define SYSV_EXT 1 /* stuff in System V ascftime routine */
@ -94,13 +96,11 @@
#undef strchr /* avoid AIX weirdness */
#ifndef __STDC__
#if !defined __STDC__ && !defined _WIN32
#define const /**/
extern void tzset();
static int weeknumber();
adddecl(static int iso8601wknum();)
#else
extern void tzset(void);
static int weeknumber(const struct tm *timeptr, int firstweekday);
adddecl(static int iso8601wknum(const struct tm *timeptr);)
#endif
@ -117,10 +117,7 @@ extern char *strchr();
#define range(low, item, hi) max(low, min(item, hi))
#ifdef __CYGWIN__
#define DLL_IMPORT __declspec(dllimport)
#endif
#ifdef __WIN32__
#if defined __CYGWIN__ || defined __WIN32__ || defined _WIN32
#define DLL_IMPORT __declspec(dllimport)
#endif
#ifndef DLL_IMPORT
@ -191,7 +188,9 @@ rb_strftime(char *s, size_t maxsize, const char *format, const struct tm *timept
#ifndef HAVE_TM_ZONE
#ifndef HAVE_TM_NAME
struct timeval tv;
#ifdef HAVE_TIMEZONE
struct timezone zone;
#endif /* HAVE_TIMEZONE */
#endif /* HAVE_TM_NAME */
#endif /* HAVE_TM_ZONE */