1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* 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: svn+ssh://ci.ruby-lang.org/ruby/trunk@18734 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
shugo 2008-08-20 16:04:11 +00:00
parent 22c4bdcd18
commit 99155ccbf2
5 changed files with 22 additions and 929 deletions

View file

@ -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