diff options
author | Guido van Rossum <guido@python.org> | 1990-11-02 17:50:28 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1990-11-02 17:50:28 +0000 |
commit | 79e02787bd8923eed4467709f82433bacb2804e5 (patch) | |
tree | 1a6b9b567f19b8e3982cc91ee4d7515fcd86ce08 /Python/errors.c | |
parent | b9e9bfa9078b136520ce2f56d6c0bd3b49835d22 (diff) | |
download | cpython-79e02787bd8923eed4467709f82433bacb2804e5.tar.gz |
Added prototype for strerror.
Diffstat (limited to 'Python/errors.c')
-rw-r--r-- | Python/errors.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Python/errors.c b/Python/errors.c index 18f63a09b5..84582e3fc9 100644 --- a/Python/errors.c +++ b/Python/errors.c @@ -41,6 +41,8 @@ #include "tupleobject.h" #include "errors.h" +extern char *strerror PROTO((int)); + /* Last exception stored by err_setval() */ static object *last_exception; |