diff options
author | kwolekr <kwolekr@minetest.net> | 2014-02-09 13:12:28 -0500 |
---|---|---|
committer | kwolekr <kwolekr@minetest.net> | 2014-02-09 13:57:29 -0500 |
commit | a0683b811c6641528161050ea91f0425f038fa90 (patch) | |
tree | 1d3f43cbd9b985cfbb18694d68730f7c5365532c /src/script/common/c_content.cpp | |
parent | 2a01050a0cf0826f25240e2cb407535394ee360f (diff) | |
download | minetest-a0683b811c6641528161050ea91f0425f038fa90.tar.gz minetest-a0683b811c6641528161050ea91f0425f038fa90.tar.bz2 minetest-a0683b811c6641528161050ea91f0425f038fa90.zip |
Define strlcpy on platforms that do not have it
Diffstat (limited to 'src/script/common/c_content.cpp')
-rw-r--r-- | src/script/common/c_content.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/script/common/c_content.cpp b/src/script/common/c_content.cpp index 4e26dc245..8e4da1b05 100644 --- a/src/script/common/c_content.cpp +++ b/src/script/common/c_content.cpp @@ -30,6 +30,7 @@ with this program; if not, write to the Free Software Foundation, Inc., #include "log.h" #include "tool.h" #include "serverobject.h" +#include "porting.h" #include "mapgen.h" #include "json/json.h" |