added func_doc
diff --git a/Include/funcobject.h b/Include/funcobject.h
index 9801505..a6e30ca 100644
--- a/Include/funcobject.h
+++ b/Include/funcobject.h
@@ -37,6 +37,7 @@
 	object *func_name;
 	int	func_argcount;
 	object *func_argdefs;
+	object *func_doc;
 } funcobject;
 
 extern DL_IMPORT typeobject Functype;