aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorshugo <shugo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-08-20 16:04:11 +0000
committershugo <shugo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-08-20 16:04:11 +0000
commit99155ccbf20efb98ce97145b9aee95fb487262cc (patch)
tree00a7acdd717ecf462922234839c5af3d02bb7316 /include
parent22c4bdcd18036d830c1071a81139f8238f7f0ae8 (diff)
downloadruby-99155ccbf20efb98ce97145b9aee95fb487262cc.tar.gz
* 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
Diffstat (limited to 'include')
-rw-r--r--include/ruby/missing.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/include/ruby/missing.h b/include/ruby/missing.h
index 0384b995e3..392998c841 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