summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/rltiles/tool
diff options
context:
space:
mode:
authorennewalker <ennewalker@c06c8d41-db1a-0410-9941-cceddc491573>2008-12-14 13:25:12 +0000
committerennewalker <ennewalker@c06c8d41-db1a-0410-9941-cceddc491573>2008-12-14 13:25:12 +0000
commit4bd5cef214da1bb0553ef69e9b6d09ea37bf31bd (patch)
treedf819ddc32d18196031f4b989b873a9eeae0ba89 /crawl-ref/source/rltiles/tool
parent88c3cb054fd143fc5737df3701763fa13db78624 (diff)
downloadcrawl-ref-4bd5cef214da1bb0553ef69e9b6d09ea37bf31bd.tar.gz
crawl-ref-4bd5cef214da1bb0553ef69e9b6d09ea37bf31bd.zip
Fixing compile error where strcmp couldn't be found.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@7832 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/rltiles/tool')
-rw-r--r--crawl-ref/source/rltiles/tool/tile_list_processor.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/crawl-ref/source/rltiles/tool/tile_list_processor.cc b/crawl-ref/source/rltiles/tool/tile_list_processor.cc
index 37b12176bf..5618c7b621 100644
--- a/crawl-ref/source/rltiles/tool/tile_list_processor.cc
+++ b/crawl-ref/source/rltiles/tool/tile_list_processor.cc
@@ -648,6 +648,7 @@ bool tile_list_processor::write_data()
fprintf(fp, "// This file has been automatically generated.\n\n");
fprintf(fp, "#include \"tiledef-%s.h\"\n\n", lcname.c_str());
fprintf(fp, "#include <string>\n");
+ fprintf(fp, "#include <string.h>\n");
fprintf(fp, "#include <assert.h>\n");
fprintf(fp, "using namespace std;\n\n");