summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-07-17 02:49:01 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-07-17 02:49:01 +0000
commitc5aae656e5d0f6f16cb58fd94411665dc53c086f (patch)
tree7cc8a97b445248295fd98ad9dcd499ef596af33b
parentb3fd4cf8334dcf5fa6e1e999a013348ef90a651f (diff)
* st.c: still need to include config.h on some platforms.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10540 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--st.c1
2 files changed, 5 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index d0f44fea03..9bd3f953ca 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Mon Jul 17 11:47:35 2006 NAKAMURA Usaku <usa@ruby-lang.org>
+
+ * st.c: still need to include config.h on some platforms.
+
Sat Jul 15 01:09:22 2006 Yukihiro Matsumoto <matz@ruby-lang.org>
* st.c (malloc): use xmalloc/xcalloc instead of plain
diff --git a/st.c b/st.c
index 24fde6eb27..0ace74e235 100644
--- a/st.c
+++ b/st.c
@@ -2,6 +2,7 @@
/* static char sccsid[] = "@(#) st.c 5.1 89/12/14 Crucible"; */
+#include "config.h"
#include <stdio.h>
#ifdef HAVE_STDLIB_H
#include <stdlib.h>