foxygit / doom Log in
commit 8bc57f30c05c0bdb3ee44d99679b4195051d00fa
Author:     Fabian Greffrath <fabian@greffrath.com>
AuthorDate: Tue Apr 28 08:55:01 2015 +0200
Commit:     Fabian Greffrath <fabian@greffrath.com>
CommitDate: Tue Apr 28 08:55:01 2015 +0200

    include <string.h> in z_zone.c for memset()
---
 src/z_zone.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/z_zone.c b/src/z_zone.c
index 311eff50..f88e3f02 100644
--- a/src/z_zone.c
+++ b/src/z_zone.c
@@ -16,6 +16,8 @@
 //	Zone Memory Allocation. Neat.
 //

+#include <string.h>
+
 #include "doomtype.h"
 #include "i_system.h"
 #include "m_argv.h"