From 79e02787bd8923eed4467709f82433bacb2804e5 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Fri, 2 Nov 1990 17:50:28 +0000 Subject: Added prototype for strerror. --- Python/errors.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Python/errors.c') 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; -- cgit v1.2.1