From dbd9ba6a6c19c3d06f5684b3384a934f740038db Mon Sep 17 00:00:00 2001 From: Tim Peters Date: Sun, 9 Jul 2000 03:09:57 +0000 Subject: Nuke all remaining occurrences of Py_PROTO and Py_FPROTO. --- Python/errors.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Python/errors.c') diff --git a/Python/errors.c b/Python/errors.c index d2aa3dd603..4a3573e4dc 100644 --- a/Python/errors.c +++ b/Python/errors.c @@ -17,14 +17,14 @@ redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. #endif #ifdef macintosh -extern char *PyMac_StrError Py_PROTO((int)); +extern char *PyMac_StrError(int); #undef strerror #define strerror PyMac_StrError #endif /* macintosh */ #ifndef __STDC__ #ifndef MS_WINDOWS -extern char *strerror Py_PROTO((int)); +extern char *strerror(int); #endif #endif -- cgit v1.2.1