summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Include/funcobject.h1
1 files changed, 1 insertions, 0 deletions
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 @@ typedef struct {
object *func_name;
int func_argcount;
object *func_argdefs;
+ object *func_doc;
} funcobject;
extern DL_IMPORT typeobject Functype;