diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-07-29 14:38:34 +0200 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-07-29 14:38:34 +0200 |
commit | bd871e08481e5ccc384080227e4bac69a68259d8 (patch) | |
tree | 3e5f073ef7b96f1f6d221af54c728ef67ac06795 /source/md5/md5.cpp | |
parent | Fixed warnings in item handlers - items' damage value is a short, but block meta is only a NIBBLETYPE. Also slight cleanup. (diff) | |
download | cuberite-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 '')
-rw-r--r-- | source/md5/md5.cpp | 7 |
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 + |