summaryrefslogtreecommitdiffstats
path: root/source/md5/md5.cpp
diff options
context:
space:
mode:
authormadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-07-29 14:38:34 +0200
committermadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-07-29 14:38:34 +0200
commitbd871e08481e5ccc384080227e4bac69a68259d8 (patch)
tree3e5f073ef7b96f1f6d221af54c728ef67ac06795 /source/md5/md5.cpp
parentFixed warnings in item handlers - items' damage value is a short, but block meta is only a NIBBLETYPE. Also slight cleanup. (diff)
downloadcuberite-bd871e08481e5ccc384080227e4bac69a68259d8.tar
cuberite-bd871e08481e5ccc384080227e4bac69a68259d8.tar.gz
cuberite-bd871e08481e5ccc384080227e4bac69a68259d8.tar.bz2
cuberite-bd871e08481e5ccc384080227e4bac69a68259d8.tar.lz
cuberite-bd871e08481e5ccc384080227e4bac69a68259d8.tar.xz
cuberite-bd871e08481e5ccc384080227e4bac69a68259d8.tar.zst
cuberite-bd871e08481e5ccc384080227e4bac69a68259d8.zip
Diffstat (limited to 'source/md5/md5.cpp')
-rw-r--r--source/md5/md5.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/source/md5/md5.cpp b/source/md5/md5.cpp
index e1012d268..eae0fc3f2 100644
--- a/source/md5/md5.cpp
+++ b/source/md5/md5.cpp
@@ -33,6 +33,13 @@ documentation and/or software.
/* interface header */
#include "md5.h"
+/* system implementation headers */
+#include <stdio.h>
+
+#ifndef _WIN32
+ #include <cstring>
+#endif
+