summaryrefslogtreecommitdiffstats
path: root/Objects/methodobject.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1992-03-27 17:26:44 (GMT)
committerGuido van Rossum <guido@python.org>1992-03-27 17:26:44 (GMT)
commiteec181ae887470b707bf8c06c9ff8c980f7b3ce9 (patch)
treeba3ea692dd45754133a58f10b1a1e4e9de4a16b9 /Objects/methodobject.c
parent2a591667bd32ce756417c6c42a44ec5bf61db1bc (diff)
downloadcpython-eec181ae887470b707bf8c06c9ff8c980f7b3ce9.zip
cpython-eec181ae887470b707bf8c06c9ff8c980f7b3ce9.tar.gz
cpython-eec181ae887470b707bf8c06c9ff8c980f7b3ce9.tar.bz2
Lint
./
Diffstat (limited to 'Objects/methodobject.c')
-rw-r--r--Objects/methodobject.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/Objects/methodobject.c b/Objects/methodobject.c
index 98b70a6..f6777ea 100644
--- a/Objects/methodobject.c
+++ b/Objects/methodobject.c
@@ -99,11 +99,12 @@ meth_dealloc(m)
free((char *)m);
}
+/* ARGSUSED */
static int
meth_print(m, fp, flags)
methodobject *m;
FILE *fp;
- int flags;
+ int flags; /* Not used but required by interface */
{
if (m->m_self == NULL)
fprintf(fp, "<built-in function '%s'>", m->m_name);