diff options
| author | shugo <shugo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-08-20 16:04:11 +0000 |
|---|---|---|
| committer | shugo <shugo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-08-20 16:04:11 +0000 |
| commit | b6b0ed67936292fb8928b8aad1c96928e7034cd2 (patch) | |
| tree | 00a7acdd717ecf462922234839c5af3d02bb7316 /include/ruby | |
| parent | 7d618d4b98b25c0121e052076b874faa21ed2ee5 (diff) | |
| download | ruby-b6b0ed67936292fb8928b8aad1c96928e7034cd2.tar.gz ruby-b6b0ed67936292fb8928b8aad1c96928e7034cd2.tar.xz ruby-b6b0ed67936292fb8928b8aad1c96928e7034cd2.zip | |
* configure.in: removed strftime from AC_REPLACE_FUNCS().
* include/ruby/missing.h: removed prototype for strftime().
* missing/strftime.c: removed.
* time.c (time_to_s): use rb_strftime() instead of strftime(3).
(time_zone): ditto.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@18734 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'include/ruby')
| -rw-r--r-- | include/ruby/missing.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/ruby/missing.h b/include/ruby/missing.h index 0384b995e..392998c84 100644 --- a/include/ruby/missing.h +++ b/include/ruby/missing.h @@ -130,10 +130,6 @@ extern char *strrchr(const char *, int); extern char *strerror(int); #endif -#ifndef HAVE_STRFTIME -extern size_t strftime(char *, size_t, const char *, const struct tm *); -#endif - #ifndef HAVE_STRSTR extern char *strstr(const char *, const char *); #endif |
