diff options
author | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2011-08-27 09:45:15 +0000 |
---|---|---|
committer | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2011-08-27 09:45:15 +0000 |
commit | 7412263eba30c0c65ae72f4e9dc0d139f37f4d00 (patch) | |
tree | eb143f4cacf3d75aef6532e6f66df4632c68e289 /time.c | |
parent | 23b280869314c59be4e4fb01d68ebacf753475a9 (diff) | |
download | ruby-7412263eba30c0c65ae72f4e9dc0d139f37f4d00.tar.gz |
* 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
Diffstat (limited to 'time.c')
-rw-r--r-- | time.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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 |