From: zooko <zooko@zooko.com>
Date: Mon, 15 Jun 2009 22:18:28 +0000 (+0530)
Subject: #include <stddef.h> -- it is required for size_t (on some platforms)
X-Git-Url: https://git.rkrishnan.org/%5B/frontends/%22file:/status?a=commitdiff_plain;h=1afd5017cede98e5fba191c6c5726d301c98d5ef;p=tahoe-lafs%2Fzfec.git

#include <stddef.h> -- it is required for size_t (on some platforms)

Ignore-this: 81865f845b989d65bfe64c44b3b05455

darcs-hash:47e32308c6f27de8a900808d0e7aeb52a88f84d0
---

diff --git a/zfec/zfec/_fecmodule.c b/zfec/zfec/_fecmodule.c
index bab1a49..34a2941 100644
--- a/zfec/zfec/_fecmodule.c
+++ b/zfec/zfec/_fecmodule.c
@@ -4,6 +4,7 @@
 
 #include <Python.h>
 #include <structmember.h>
+#include <stddef.h>
 
 #if (PY_VERSION_HEX < 0x02050000)
 typedef int Py_ssize_t;