aboutsummaryrefslogtreecommitdiffstats
path: root/st.c
diff options
context:
space:
mode:
authornormal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-06-26 18:59:59 +0000
committernormal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-06-26 18:59:59 +0000
commit9df6eb2dcab0235a3c6f1693bcd3d0bd636d1b74 (patch)
tree0ba320b7d87dbf6868938992dc4ca95b8c975d59 /st.c
parente2d3ba415024631769412c156c02e32840b3d7a0 (diff)
downloadruby-9df6eb2dcab0235a3c6f1693bcd3d0bd636d1b74.tar.gz
st.c: include ccan/list/list.h to test build
I suspect the build failures with r51034 ("st.c: use ccan linked-list") on ko1's CI machine was due to me forgetting to update common.mk :x Lets see what happens when I only include ccan/list/list.h Will followup with appropriate reverts or reinstating the rest of r51034 along with a common.mk update as I watch CI build. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51041 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'st.c')
-rw-r--r--st.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/st.c b/st.c
index e238062336..df616d4ade 100644
--- a/st.c
+++ b/st.c
@@ -14,6 +14,7 @@
#include <stdlib.h>
#endif
#include <string.h>
+#include "ccan/list/list.h"
typedef struct st_table_entry st_table_entry;