diff options
| author | Guido van Rossum <guido@python.org> | 1990-11-02 17:50:28 (GMT) |
|---|---|---|
| committer | Guido van Rossum <guido@python.org> | 1990-11-02 17:50:28 (GMT) |
| commit | f5401bd49ead1734906f97e5e289772d086378be (patch) | |
| tree | 1a6b9b567f19b8e3982cc91ee4d7515fcd86ce08 /Python | |
| parent | bd3edc8dc39692653cdbdfdace620997a53b10bd (diff) | |
| download | cpython-f5401bd49ead1734906f97e5e289772d086378be.zip cpython-f5401bd49ead1734906f97e5e289772d086378be.tar.gz cpython-f5401bd49ead1734906f97e5e289772d086378be.tar.bz2 | |
Added prototype for strerror.
Diffstat (limited to 'Python')
| -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 18f63a0..84582e3 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; |
