From: Guido van Rossum Date: Fri, 2 Nov 1990 17:50:28 +0000 (+0000) Subject: Added prototype for strerror. X-Git-Tag: v0.9.8~1124 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f5401bd49ead1734906f97e5e289772d086378be;p=thirdparty%2FPython%2Fcpython.git Added prototype for strerror. --- diff --git a/Python/errors.c b/Python/errors.c index 18f63a09b5d8..84582e3fc9f2 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;