diff options
author | Guido van Rossum <guido@python.org> | 1992-03-27 17:26:44 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1992-03-27 17:26:44 (GMT) |
commit | eec181ae887470b707bf8c06c9ff8c980f7b3ce9 (patch) | |
tree | ba3ea692dd45754133a58f10b1a1e4e9de4a16b9 /Objects | |
parent | 2a591667bd32ce756417c6c42a44ec5bf61db1bc (diff) | |
download | cpython-eec181ae887470b707bf8c06c9ff8c980f7b3ce9.zip cpython-eec181ae887470b707bf8c06c9ff8c980f7b3ce9.tar.gz cpython-eec181ae887470b707bf8c06c9ff8c980f7b3ce9.tar.bz2 |
Lint
./
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/methodobject.c | 3 |
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); |