diff options
author | Tim Peters <tim.peters@gmail.com> | 2000-07-09 03:09:57 +0000 |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2000-07-09 03:09:57 +0000 |
commit | 20f6f686a90e6c7e599fd6d9baa4bf398e1e8ed0 (patch) | |
tree | cd45fc18355945e7ae765feee7c136b7d90675db /Python/errors.c | |
parent | bb5ceef8272f3d5caf0e8f31657fc87255f62ab5 (diff) | |
download | cpython-20f6f686a90e6c7e599fd6d9baa4bf398e1e8ed0.tar.gz |
Nuke all remaining occurrences of Py_PROTO and Py_FPROTO.
Diffstat (limited to 'Python/errors.c')
-rw-r--r-- | Python/errors.c | 4 |
1 files changed, 2 insertions, 2 deletions
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 |