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
commitc94a94805df48e900c5d6ac6f363a9d7907b1333 (patch)
tree0ba320b7d87dbf6868938992dc4ca95b8c975d59 /st.c
parentc47ef3dc13b28334ccbc741b2e125c0cc9f22ad4 (diff)
downloadruby-c94a94805df48e900c5d6ac6f363a9d7907b1333.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;