diff options
author | Guido van Rossum <guido@python.org> | 1998-08-04 22:46:29 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1998-08-04 22:46:29 +0000 |
commit | 1a8791e0b875df8e9428c2d9969f64e5967ac0b4 (patch) | |
tree | 4c0a38c8dbfc45a9b2d7343c17c4a969a8718162 /Python/import.c | |
parent | 7d896ab1bbd5e15be7ae9203ead47f4f500a6a81 (diff) | |
download | cpython-git-1a8791e0b875df8e9428c2d9969f64e5967ac0b4.tar.gz |
Changes for BeOS, QNX and long long, by Chris Herborth.
Diffstat (limited to 'Python/import.c')
-rw-r--r-- | Python/import.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/import.c b/Python/import.c index f745a94a11..b859c2b569 100644 --- a/Python/import.c +++ b/Python/import.c @@ -2274,7 +2274,7 @@ static PyMethodDef imp_methods[] = { {NULL, NULL} /* sentinel */ }; -int +static int setint(d, name, value) PyObject *d; char *name; |