зеркало из https://github.com/github/ruby.git
* internal.h (rb_strftime_timespec): move to time.c because it depends
encoding.h. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33095 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
23b2808693
Коммит
7412263eba
|
@ -1,3 +1,8 @@
|
|||
Sat Aug 27 18:44:06 2011 NARUSE, Yui <naruse@ruby-lang.org>
|
||||
|
||||
* internal.h (rb_strftime_timespec): move to time.c because it depends
|
||||
encoding.h.
|
||||
|
||||
Sat Aug 27 18:17:58 2011 NARUSE, Yui <naruse@ruby-lang.org>
|
||||
|
||||
* strftime.c (rb_strftime_with_timespec): get enc argument to specify
|
||||
|
|
|
@ -29,8 +29,6 @@ struct rb_classext_struct {
|
|||
struct st_table *const_tbl;
|
||||
};
|
||||
|
||||
typedef struct OnigEncodingTypeST rb_encoding;
|
||||
|
||||
#undef RCLASS_SUPER
|
||||
#define RCLASS_EXT(c) (RCLASS(c)->ptr)
|
||||
#define RCLASS_SUPER(c) (RCLASS_EXT(c)->super)
|
||||
|
@ -159,9 +157,6 @@ VALUE rb_reg_check_preprocess(VALUE);
|
|||
/* signal.c */
|
||||
int rb_get_next_signal(void);
|
||||
|
||||
/* strftime.c */
|
||||
size_t rb_strftime_timespec(char *s, size_t maxsize, const char *format, rb_encoding *enc, const struct vtm *vtm, struct timespec *ts, int gmt);
|
||||
|
||||
/* string.c */
|
||||
int rb_str_buf_cat_escaped_char(VALUE result, unsigned int c, int unicode_p);
|
||||
|
||||
|
|
3
time.c
3
time.c
|
@ -16,6 +16,9 @@
|
|||
#include "ruby/encoding.h"
|
||||
#include "internal.h"
|
||||
|
||||
/* strftime.c */
|
||||
size_t rb_strftime_timespec(char *s, size_t maxsize, const char *format, rb_encoding *enc, const struct vtm *vtm, struct timespec *ts, int gmt);
|
||||
|
||||
#ifdef HAVE_UNISTD_H
|
||||
#include <unistd.h>
|
||||
#endif
|
||||
|
|
Загрузка…
Ссылка в новой задаче