summaryrefslogtreecommitdiffstats
path: root/Objects/moduleobject.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1992-03-27 17:26:38 (GMT)
committerGuido van Rossum <guido@python.org>1992-03-27 17:26:38 (GMT)
commit2a591667bd32ce756417c6c42a44ec5bf61db1bc (patch)
tree2ebbb41b0e243339f2193092f1c61131371518a2 /Objects/moduleobject.c
parent4f1691d0d5b2f155f0171d76af4701883b289990 (diff)
downloadcpython-2a591667bd32ce756417c6c42a44ec5bf61db1bc.zip
cpython-2a591667bd32ce756417c6c42a44ec5bf61db1bc.tar.gz
cpython-2a591667bd32ce756417c6c42a44ec5bf61db1bc.tar.bz2
Lint
Diffstat (limited to 'Objects/moduleobject.c')
-rw-r--r--Objects/moduleobject.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/Objects/moduleobject.c b/Objects/moduleobject.c
index 1104986..b8a7213 100644
--- a/Objects/moduleobject.c
+++ b/Objects/moduleobject.c
@@ -83,11 +83,12 @@ module_dealloc(m)
free((char *)m);
}
+/* ARGSUSED */
static int
module_print(m, fp, flags)
moduleobject *m;
FILE *fp;
- int flags;
+ int flags; /* Not used but required by interface */
{
fprintf(fp, "<module '%s'>", getstringvalue(m->md_name));
return 0;