diff options
author | Guido van Rossum <guido@python.org> | 1992-03-27 17:23:17 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1992-03-27 17:23:17 (GMT) |
commit | 2807d191f0fc0727954cebfa9ba13768f7415469 (patch) | |
tree | 18bf063895190d313e9d0fe4a5c2b384fb6d18a6 /Python/marshal.c | |
parent | 50e61dc2597ca5e3b5924feb2ab7d470c9c47da0 (diff) | |
download | cpython-2807d191f0fc0727954cebfa9ba13768f7415469.zip cpython-2807d191f0fc0727954cebfa9ba13768f7415469.tar.gz cpython-2807d191f0fc0727954cebfa9ba13768f7415469.tar.bz2 |
Shut up lint.
Diffstat (limited to 'Python/marshal.c')
-rw-r--r-- | Python/marshal.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/marshal.c b/Python/marshal.c index d065ebe..aac2672 100644 --- a/Python/marshal.c +++ b/Python/marshal.c @@ -28,6 +28,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. it would have to take circular links and sharing into account. */ #include "allobjects.h" +#include "modsupport.h" #include "longintrepr.h" #include "compile.h" #include "marshal.h" @@ -131,7 +132,6 @@ wr_object(v, fp) n = getdictsize(v); for (i = 0; i < n; i++) { object *key, *val; - extern object *getdict2key(); key = getdict2key(v, (int)i); if (key != NULL) { val = dict2lookup(v, key); /* Can't be NULL */ @@ -221,7 +221,7 @@ rd_object(fp) case TYPE_FLOAT: { - extern double strtod(); + extern double strtod PROTO((const char *, char **)); char buf[256]; double res; char *end; |